Commit c70e6125 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

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

parent 1b392bfa
......@@ -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)
{
......
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