[PATCH] KeInsertQueueApc

"Casper Hornstrup" <[email protected]> Sat, 12 Jul 2003 12:17:04 +0200
Newsgroups gmane.comp.gnu.mingw.patches
Message-ID <[email protected]>
2003-07-12  Casper S. Hornstrup  <[email protected]>

	* include/ddk/ntifs.h (KeInsertQueueApc): Make return type
BOOLEAN. Name
	parameter 4 PriorityBoost and make it of type KPRIORITY.
prototype.diff (application/octet-stream, 903 B)
2003-07-12  Casper S. Hornstrup  <[email protected]>

	* include/ddk/ntifs.h (KeInsertQueueApc): Make return type BOOLEAN. Name
	parameter 4 PriorityBoost and make it of type KPRIORITY.


Index: include/ddk/ntifs.h
===================================================================
RCS file: /cvs/src/src/winsup/w32api/include/ddk/ntifs.h,v
retrieving revision 1.3
diff -u -p -u -r1.3 ntifs.h
--- include/ddk/ntifs.h	15 Nov 2002 01:08:16 -0000	1.3
+++ include/ddk/ntifs.h	12 Jul 2003 10:06:36 -0000
@@ -3099,13 +3099,13 @@ KeInsertQueue (
 );
 
 NTKERNELAPI
-VOID
+BOOLEAN
 NTAPI
 KeInsertQueueApc (
-    IN PKAPC    Apc,
-    IN PVOID    SystemArgument1,
-    IN PVOID    SystemArgument2,
-    UCHAR       Unknown
+    IN PKAPC      Apc,
+    IN PVOID      SystemArgument1,
+    IN PVOID      SystemArgument2,
+    IN KPRIORITY  PriorityBoost
 );
 
 NTKERNELAPI