This commit was generated by cvs2svn to compensate for changes in r10,
[reactos.git] / reactos / include / internal / iomgr.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: include/internal/iomgr.h
5 * PURPOSE: Internal io manager declarations
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * UPDATE HISTORY:
8 * 28/05/97: Created
9 */
10
11 #ifndef __INCLUDE_INTERNAL_IOMGR_H
12 #define __INCLUDE_INTERNAL_IOMGR_H
13
14 #include <ddk/ntddk.h>
15
16 /*
17 * FUNCTION: Called to initalize a loaded driver
18 * ARGUMENTS:
19 * entry = pointer to the driver initialization routine
20 * RETURNS: Success or failure
21 */
22 NTSTATUS InitalizeLoadedDriver(PDRIVER_INITIALIZE entry);
23
24 VOID IoInitCancelHandling(VOID);
25
26
27 #endif