Stub for GetQueuedCompletionStatus.
This commit is contained in:
parent
b425367fa8
commit
a72491e420
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue