reactos/ntoskrnl/io
diff -u -r1.17 -r1.18
--- iocomp.c 21 Dec 2004 02:34:32 -0000 1.17
+++ iocomp.c 21 Dec 2004 18:37:28 -0000 1.18
@@ -99,8 +99,9 @@
return STATUS_NOT_IMPLEMENTED;
}
-VOID
-NtInitializeIoCompletionImplementation(VOID)
+VOID
+FASTCALL
+IopInitIoCompletionImplementation(VOID)
{
ExIoCompletionType = ExAllocatePool(NonPagedPool, sizeof(OBJECT_TYPE));
reactos/ntoskrnl/io
diff -u -r1.54 -r1.55
--- iomgr.c 21 Nov 2004 21:53:07 -0000 1.54
+++ iomgr.c 21 Dec 2004 18:37:28 -0000 1.55
@@ -1,4 +1,4 @@
-/* $Id: iomgr.c,v 1.54 2004/11/21 21:53:07 ion Exp $
+/* $Id: iomgr.c,v 1.55 2004/12/21 18:37:28 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -535,6 +535,7 @@
IoInitShutdownNotification();
IopInitErrorLog();
IopInitTimerImplementation();
+ IopInitIoCompletionImplementation();
/*
* Create link from '\DosDevices' to '\??' directory
reactos/ntoskrnl/include/internal
diff -u -r1.50 -r1.51
--- io.h 25 Nov 2004 22:18:16 -0000 1.50
+++ io.h 21 Dec 2004 18:37:28 -0000 1.51
@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-/* $Id: io.h,v 1.50 2004/11/25 22:18:16 ion Exp $
+/* $Id: io.h,v 1.51 2004/12/21 18:37:28 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -523,6 +523,11 @@
IN PIO_TIMER Timer
);
+/* iocomp.c */
+VOID
+FASTCALL
+IopInitIoCompletionImplementation(VOID);
+
#define CM_RESOURCE_LIST_SIZE(ResList) \
(ResList->Count == 1) ? \
FIELD_OFFSET(CM_RESOURCE_LIST, List[0].PartialResourceList. \