Commit 639e8d26 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

hh: Cast GetProcAddress's return to supress a Win64 warning.

parent 5ea2a177
......@@ -29,7 +29,7 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmds
DOWINMAIN *doWinMain;
hModule = LoadLibrary("hhctrl.ocx");
doWinMain = GetProcAddress(hModule, "doWinMain");
doWinMain = (DOWINMAIN*) GetProcAddress(hModule, "doWinMain");
return doWinMain(hInst, cmdline);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment