[PSDK]
[reactos.git] / include / ndk / ntndk.h
1 /*++ NDK Version: 0098
2
3 Copyright (c) Alex Ionescu. All rights reserved.
4
5 Header Name:
6
7 ntndk.h
8
9 Abstract:
10
11 Master include file for the Native Development Kit.
12
13 Author:
14
15 Alex Ionescu (alexi@tinykrnl.org) - Updated - 27-Feb-2006
16
17 --*/
18
19 #ifndef _NTNDK_
20 #define _NTNDK_
21
22 //
23 // Disable some warnings that we'd get on /W4.
24 // Only active for compilers which support this feature.
25 //
26 #ifdef _MSC_VER
27 #pragma warning(push)
28 #pragma warning(disable:4001)
29 #pragma warning(disable:4201)
30 #pragma warning(disable:4115)
31 #pragma warning(disable:4214)
32 #endif
33
34 //
35 // Headers needed for NDK
36 //
37 #include <stdio.h> // C Standard Header
38 #include <excpt.h> // C Standard Header
39 #include <stdarg.h> // C Standard Header
40 #include <umtypes.h> // General Definitions
41
42 //
43 // Type Headers
44 //
45 #include <cctypes.h> // Cache Manager Types
46 #include <cmtypes.h> // Configuration Manager Types
47 #include <dbgktypes.h> // User-Mode Kernel Debugging Types
48 #include <extypes.h> // Executive Types
49 #include <kdtypes.h> // Kernel Debugger Types
50 #include <ketypes.h> // Kernel Types
51 #include <haltypes.h> // Hardware Abstraction Layer Types
52 #include <ifssupp.h> // IFS Support Header
53 #include <iotypes.h> // Input/Output Manager Types
54 #include <ldrtypes.h> // Loader Types
55 #include <lpctypes.h> // Local Procedure Call Types
56 #include <mmtypes.h> // Memory Manager Types
57 #include <obtypes.h> // Object Manager Types
58 #include <potypes.h> // Power Manager Types
59 #include <pstypes.h> // Process Manager Types
60 #include <rtltypes.h> // Runtime Library Types
61 #include <setypes.h> // Security Subsystem Types
62
63 //
64 // Function Headers
65 //
66 #include <cmfuncs.h> // Configuration Manager Functions
67 #include <dbgkfuncs.h> // User-Mode Kernel Debugging Functions
68 #include <kdfuncs.h> // Kernel Debugger Functions
69 #include <kefuncs.h> // Kernel Functions
70 #include <exfuncs.h> // Executive Functions
71 #include <halfuncs.h> // Hardware Abstraction Layer Functions
72 #include <iofuncs.h> // Input/Output Manager Functions
73 #include <inbvfuncs.h> // Initialization Boot Video Functions
74 #include <ldrfuncs.h> // Loader Functions
75 #include <lpcfuncs.h> // Local Procedure Call Functions
76 #include <mmfuncs.h> // Memory Manager Functions
77 #include <obfuncs.h> // Object Manager Functions
78 #include <pofuncs.h> // Power Manager Functions
79 #include <psfuncs.h> // Process Manager Functions
80 #include <rtlfuncs.h> // Runtime Library Functions
81 #include <sefuncs.h> // Security Subsystem Functions
82 #include <umfuncs.h> // User-Mode NT Library Functions
83
84 //
85 // Assembly Support
86 //
87 #include <asm.h> // Assembly Offsets
88
89 #ifdef _MSC_VER
90 #pragma warning(pop)
91 #endif
92 #endif // _NTNDK_