460b0007e0988f48053700eb37dcac9a515ce2b7
[reactos.git] / 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 <csr/csr.h>
47 #include <win/base.h>
48 #include <win/basemsg.h>
49 #include <win/console.h>
50 #include <win/conmsg.h>
51 #include <win/winmsg.h>
52
53 /* C Headers */
54 //#include <ctype.h>
55 //#include <limits.h>
56 //#include <stdio.h>
57 //#include <wchar.h>
58
59 /* DDK Driver Headers */
60 #include <ntddbeep.h>
61 #include <mountmgr.h>
62 //#include <mountdev.h>
63
64 /* Internal Kernel32 Header */
65 #include "include/kernel32.h"
66
67 /* PSEH for SEH Support */
68 #include <pseh/pseh2.h>
69
70 /* Base Macros */
71 #include "include/base_x.h"
72
73 /* Console API Client Definitions */
74 #include "include/console.h"
75
76 #endif