Fixed warnings and errors so ReactOS can be compiled with GCC 3.2.
[reactos.git] / reactos / include / ddk / ntddk.h
1 /* $Id: ntddk.h,v 1.29 2002/05/05 14:57:38 chorns 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 #ifndef _GNU_H_WINDOWS_H
27 /* NASTY HACK! Our msvcrt are messed up, causing msvcrt.dll to crash when
28 * the headers are mixed with MinGW msvcrt headers. Not including stdlib.h
29 * seems to correct this.
30 */
31 #include <stdlib.h>
32 #include <string.h>
33 #endif
34 #include <ntos/types.h>
35 #include <ntos/time.h>
36 #include <ntos/cdrom.h>
37 #include <ntos/disk.h>
38 #include <ntos/registry.h>
39 #include <ntos/port.h>
40 #include <napi/types.h>
41
42 #include <pe.h>
43
44 #include <ddk/status.h>
45 #include <ddk/ntdef.h>
46 #include <ddk/defines.h>
47 #include <ddk/types.h>
48 #include <ddk/cmtypes.h>
49 #include <ddk/ketypes.h>
50 #include <ntos/security.h>
51 #include <ddk/obtypes.h>
52 #include <ddk/setypes.h>
53 #include <ddk/mmtypes.h>
54 #include <ddk/potypes.h>
55 #include <ddk/pnptypes.h>
56 #include <ddk/iotypes.h>
57 #include <ddk/extypes.h>
58 #include <ddk/pstypes.h>
59 #include <ddk/ldrtypes.h>
60 #include <ddk/zwtypes.h>
61 #include <ddk/ioctrl.h>
62 #include <ddk/rtltypes.h>
63 #include <ddk/haltypes.h>
64 #include <napi/shared_data.h>
65
66 #include <ddk/zw.h>
67 #include <ddk/rtl.h>
68 #include <ddk/dbgfuncs.h>
69 #include <ddk/ldrfuncs.h>
70 #include <ddk/cmfuncs.h>
71 #if defined(__NTOSKRNL__) || defined(__NTDRIVER__) || defined(__NTHAL__)
72 #include <ddk/exfuncs.h>
73 #include <ddk/halfuncs.h>
74 #include <ddk/mmfuncs.h>
75 #include <ddk/kdfuncs.h>
76 #include <ddk/kefuncs.h>
77 #include <ddk/pofuncs.h>
78 #include <ddk/pnpfuncs.h>
79 #include <ddk/iofuncs.h>
80 #include <ddk/psfuncs.h>
81 #include <ddk/obfuncs.h>
82 #include <ddk/sefuncs.h>
83 #endif /*__NTOSKRNL__ || __NTDRIVER__ || __NTHAL__ */
84
85 #ifdef __cplusplus
86 };
87 #endif
88
89 #endif /* __NTDDK_H */
90