kernel32: Make GetModuleHandleA hotpatchable.

This commit is contained in:
André Hentschel 2012-03-08 15:00:25 +01:00 committed by Alexandre Julliard
parent 3f6142e00d
commit 6d66de583f
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ BOOL WINAPI GetModuleHandleExW( DWORD flags, LPCWSTR name, HMODULE *module )
* Success: A handle to the loaded dll.
* Failure: A NULL handle. Use GetLastError() to determine the cause.
*/
HMODULE WINAPI GetModuleHandleA(LPCSTR module)
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR module)
{
HMODULE ret;