PATCH: SetQuieuedCompletion status

Marcus Meissner marcus at jet.franken.de
Thu Jun 7 01:08:43 CDT 2001


Hi,

Changelog:
	stub for GetQueuedCompletionStatus.

Index: win32/newfns.c
===================================================================
RCS file: /home/wine/wine/win32/newfns.c,v
retrieving revision 1.29
diff -u -r1.29 newfns.c
--- win32/newfns.c	2001/02/14 23:11:20	1.29
+++ win32/newfns.c	2001/06/07 07:07:56
@@ -298,3 +298,15 @@
     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;
+}
Index: dlls/kernel/kernel32.spec
===================================================================
RCS file: /home/wine/wine/dlls/kernel/kernel32.spec,v
retrieving revision 1.34
diff -u -r1.34 kernel32.spec
--- dlls/kernel/kernel32.spec	2001/05/24 19:32:00	1.34
+++ dlls/kernel/kernel32.spec	2001/06/07 07:07:57
@@ -429,7 +429,7 @@
 @ 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




More information about the wine-patches mailing list