kernel32/tests: Fix fiber tests compilation with __WINESRC__ defined.

This commit is contained in:
Dmitry Timoshkov 2013-10-21 17:01:46 +09:00 committed by Alexandre Julliard
parent 79ac1fa33f
commit f8fbe80cc7
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ static WORD cbCount;
static VOID init_funcs(void)
{
HMODULE hKernel32 = GetModuleHandle("kernel32");
HMODULE hKernel32 = GetModuleHandleA("kernel32.dll");
#define X(f) p##f = (void*)GetProcAddress(hKernel32, #f);
X(CreateFiber);