* Slap *some* sense into our header inclusions.
[reactos.git] / reactos / dll / win32 / kernel32 / k32.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: lib/kernel32/k32.h
5 * PURPOSE: Win32 Kernel Libary Header
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 #ifndef __K32_H
10 #define __K32_H
11
12 /* INCLUDES ******************************************************************/
13
14 /* PSDK/NDK Headers */
15 #define WIN32_NO_STATUS
16 #include <stdarg.h>
17 #include <windef.h>
18 #include <winbase.h>
19 #include <wingdi.h>
20 #include <winreg.h>
21 #include <wincon.h>
22 #include <winuser.h>
23 #include <winspool.h>
24 #include <tlhelp32.h>
25
26 /* Redefine NTDDI_VERSION to 2K3 SP1 to get correct NDK definitions */
27 #undef NTDDI_VERSION
28 #define NTDDI_VERSION NTDDI_WS03SP1
29
30 #include <ndk/cmfuncs.h>
31 #include <ndk/dbgkfuncs.h>
32 #include <ndk/exfuncs.h>
33 #include <ndk/iofuncs.h>
34 #include <ndk/kdtypes.h>
35 #include <ndk/kefuncs.h>
36 #include <ndk/ldrfuncs.h>
37 #include <ndk/mmfuncs.h>
38 #include <ndk/obfuncs.h>
39 #include <ndk/pofuncs.h>
40 #include <ndk/psfuncs.h>
41 #include <ndk/rtlfuncs.h>
42 #include <ndk/setypes.h>
43 #include <ndk/umfuncs.h>
44
45 /* CSRSS Header */
46 #include <csrss/csrss.h>
47
48 /* C Headers */
49 //#include <ctype.h>
50 //#include <limits.h>
51 //#include <stdio.h>
52 //#include <wchar.h>
53
54 /* DDK Driver Headers */
55 #include <ntddbeep.h>
56 #include <mountmgr.h>
57 //#include <mountdev.h>
58
59 /* Internal Kernel32 Header */
60 #include "include/kernel32.h"
61
62 /* PSEH for SEH Support */
63 #include <pseh/pseh2.h>
64
65 /* Base Macros */
66 #include "include/base_x.h"
67
68 #endif