Stub for GetQueuedCompletionStatus.

This commit is contained in:
Marcus Meissner 2001-06-07 22:24:26 +00:00 committed by Alexandre Julliard
parent b425367fa8
commit a72491e420
2 changed files with 13 additions and 1 deletions

View File

@ -429,7 +429,7 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
@ stdcall GetProfileSectionW(wstr ptr long) GetProfileSectionW @ stdcall GetProfileSectionW(wstr ptr long) GetProfileSectionW
@ stdcall GetProfileStringA(str str str ptr long) GetProfileStringA @ stdcall GetProfileStringA(str str str ptr long) GetProfileStringA
@ stdcall GetProfileStringW(wstr wstr wstr ptr long) GetProfileStringW @ stdcall GetProfileStringW(wstr wstr wstr ptr long) GetProfileStringW
@ stub GetQueuedCompletionStatus @ stdcall GetQueuedCompletionStatus(long ptr ptr ptr long) GetQueuedCompletionStatus
@ stub GetSLCallbackTarget @ stub GetSLCallbackTarget
@ stub GetSLCallbackTemplate @ stub GetSLCallbackTemplate
@ stdcall GetShortPathNameA(str ptr long) GetShortPathNameA @ stdcall GetShortPathNameA(str ptr long) GetShortPathNameA

View File

@ -298,3 +298,15 @@ DWORD dwNumberOfConcurrentThreads)
FIXME("(%04x, %04x, %08lx, %08lx): stub.\n", hFileHandle, hExistingCompletionPort, dwCompletionKey, dwNumberOfConcurrentThreads); FIXME("(%04x, %04x, %08lx, %08lx): stub.\n", hFileHandle, hExistingCompletionPort, dwCompletionKey, dwNumberOfConcurrentThreads);
return (HANDLE)NULL; 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;
}