Skip to content
Snippets Groups Projects
Commit a72491e4 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

Stub for GetQueuedCompletionStatus.

parent b425367f
No related branches found
No related tags found
No related merge requests found
......@@ -429,7 +429,7 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
@ stdcall GetProfileSectionW(wstr ptr long) GetProfileSectionW
@ stdcall GetProfileStringA(str str str ptr long) GetProfileStringA
@ stdcall GetProfileStringW(wstr wstr wstr ptr long) GetProfileStringW
@ stub GetQueuedCompletionStatus
@ stdcall GetQueuedCompletionStatus(long ptr ptr ptr long) GetQueuedCompletionStatus
@ stub GetSLCallbackTarget
@ stub GetSLCallbackTemplate
@ stdcall GetShortPathNameA(str ptr long) GetShortPathNameA
......
......@@ -298,3 +298,15 @@ DWORD dwNumberOfConcurrentThreads)
FIXME("(%04x, %04x, %08lx, %08lx): stub.\n", hFileHandle, hExistingCompletionPort, dwCompletionKey, dwNumberOfConcurrentThreads);
return (HANDLE)NULL;
}
/******************************************************************************
* GetQueuedCompletionStatus (KERNEL32.@)
*/
BOOL WINAPI GetQueuedCompletionStatus(
HANDLE CompletionPort, LPDWORD lpNumberOfBytesTransferred,
LPDWORD lpCompletionKey, LPOVERLAPPED *lpOverlapped, DWORD dwMilliseconds
) {
FIXME("(%x,%p,%p,%p,%ld), stub!\n",CompletionPort,lpNumberOfBytesTransferred,lpCompletionKey,lpOverlapped,dwMilliseconds);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment