Split rtl.h into rtl.h and rtltypes.h.
[reactos.git] / reactos / include / ddk / ntddk.h
1 /* $Id: ntddk.h,v 1.26 2002/01/14 01:41:08 ekohl Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: include/ddk/ntddk.h
6 * PURPOSE: Interface definitions for drivers
7 * PROGRAMMER: David Welch (welch@mcmail.com)
8 * UPDATE HISTORY:
9 * 15/05/98: Created
10 */
11
12 #ifndef __NTDDK_H
13 #define __NTDDK_H
14
15 #ifdef __cplusplus
16 extern "C"
17 {
18 #endif
19
20 /* INCLUDES ***************************************************************/
21
22 #define FASTCALL __attribute__((fastcall))
23
24 #define STATIC static
25
26
27 #include <ntos/types.h>
28 #include <ntos/time.h>
29 #include <ntos/disk.h>
30 #include <ntos/registry.h>
31 #include <ntos/port.h>
32 #include <napi/types.h>
33
34 #include <pe.h>
35
36 #include <ddk/status.h>
37 #include <ddk/ntdef.h>
38 #include <ddk/defines.h>
39 #include <ddk/types.h>
40 #include <ddk/cmtypes.h>
41 #include <ddk/ketypes.h>
42 #include <ntos/security.h>
43 #include <ddk/obtypes.h>
44 #include <ddk/setypes.h>
45 #include <ddk/mmtypes.h>
46 #include <ddk/potypes.h>
47 #include <ddk/pnptypes.h>
48 #include <ddk/iotypes.h>
49 #include <ddk/extypes.h>
50 #include <ddk/pstypes.h>
51 #include <ddk/ldrtypes.h>
52 #include <ddk/zwtypes.h>
53 #include <ddk/ioctrl.h>
54 #include <ddk/rtltypes.h>
55 #include <ddk/haltypes.h>
56
57 #include <ddk/zw.h>
58 #include <ddk/rtl.h>
59 #include <ddk/dbgfuncs.h>
60 #include <ddk/ldrfuncs.h>
61 #include <ddk/cmfuncs.h>
62 #if defined(__NTOSKRNL__) || defined(__NTDRIVER__) || defined(__NTHAL__)
63 #include <ddk/exfuncs.h>
64 #include <ddk/halfuncs.h>
65 #include <ddk/mmfuncs.h>
66 #include <ddk/kdfuncs.h>
67 #include <ddk/kefuncs.h>
68 #include <ddk/pofuncs.h>
69 #include <ddk/pnpfuncs.h>
70 #include <ddk/iofuncs.h>
71 #include <ddk/psfuncs.h>
72 #include <ddk/obfuncs.h>
73 #include <ddk/sefuncs.h>
74 #endif /*__NTOSKRNL__ || __NTDRIVER__ || __NTHAL__ */
75
76 #ifdef __cplusplus
77 };
78 #endif
79
80 #endif /* __NTDDK_H */
81