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

This commit is contained in:
Dan Hipschman 2008-07-15 17:49:57 -07:00 committed by Alexandre Julliard
parent 1b392bfa06
commit c70e6125bf
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{