Dan Hipschman : kernel32/tests: Fix p_BindIoCompletionCallback declaration so it compiles with the MS compiler .

Alexandre Julliard julliard at winehq.org
Wed Jul 16 13:32:57 CDT 2008


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

Author: Dan Hipschman <dsh at linux.ucla.edu>
Date:   Tue Jul 15 17:49:57 2008 -0700

kernel32/tests: Fix p_BindIoCompletionCallback declaration so it compiles with the MS compiler.

---

 dlls/kernel32/tests/sync.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/tests/sync.c b/dlls/kernel32/tests/sync.c
index 842a6e9..8d365ff 100644
--- a/dlls/kernel32/tests/sync.c
+++ b/dlls/kernel32/tests/sync.c
@@ -432,7 +432,7 @@ static void CALLBACK iocp_callback(DWORD dwErrorCode, DWORD dwNumberOfBytesTrans
     ReleaseSemaphore(sem, 1, NULL);
 }
 
-static BOOL WINAPI (*p_BindIoCompletionCallback)( HANDLE FileHandle, LPOVERLAPPED_COMPLETION_ROUTINE Function, ULONG Flags) = NULL;
+static BOOL (WINAPI *p_BindIoCompletionCallback)( HANDLE FileHandle, LPOVERLAPPED_COMPLETION_ROUTINE Function, ULONG Flags) = NULL;
 
 static void test_iocp_callback(void)
 {




More information about the wine-cvs mailing list