Module: wine Branch: master Commit: b225082a71af13b3f3554c95989f839834975295 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b225082a71af13b3f3554c9598...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Sep 9 13:12:46 2009 +0200
user32/tests: Use explicit prototypes for function pointers.
---
dlls/user32/tests/msg.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 30acaa2..540b494 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -11787,7 +11787,7 @@ static void test_PostMessage(void) START_TEST(msg) { BOOL ret; - FARPROC pIsWinEventHookInstalled = 0;/*GetProcAddress(user32, "IsWinEventHookInstalled");*/ + BOOL (WINAPI *pIsWinEventHookInstalled)(DWORD)= 0;/*GetProcAddress(user32, "IsWinEventHookInstalled");*/
init_procs();