kernel32: Make Sleep hotpatchable.

oldstable
André Hentschel 2012-03-08 15:00:29 +01:00 committed by Alexandre Julliard
parent 6d66de583f
commit 00efe754f5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static inline PLARGE_INTEGER get_nt_timeout( PLARGE_INTEGER pTime, DWORD timeout
/***********************************************************************
* Sleep (KERNEL32.@)
*/
VOID WINAPI Sleep( DWORD timeout )
VOID WINAPI DECLSPEC_HOTPATCH Sleep( DWORD timeout )
{
SleepEx( timeout, FALSE );
}