Alexandre Julliard : user32/tests: Use explicit prototypes for function pointers.

Alexandre Julliard julliard at winehq.org
Wed Sep 9 09:56:52 CDT 2009


Module: wine
Branch: master
Commit: b225082a71af13b3f3554c95989f839834975295
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b225082a71af13b3f3554c95989f839834975295

Author: Alexandre Julliard <julliard at 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();
 




More information about the wine-cvs mailing list