[KERNEL32]
[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 <windows.h>
17 #include <tlhelp32.h>
18
19 /* Redefine NTDDI_VERSION to 2K3 SP1 to get correct NDK definitions */
20 #undef NTDDI_VERSION
21 #define NTDDI_VERSION NTDDI_WS03SP1
22
23 #include <ndk/cmfuncs.h>
24 #include <ndk/dbgkfuncs.h>
25 #include <ndk/exfuncs.h>
26 #include <ndk/iofuncs.h>
27 #include <ndk/kdtypes.h>
28 #include <ndk/kefuncs.h>
29 #include <ndk/ldrfuncs.h>
30 #include <ndk/mmfuncs.h>
31 #include <ndk/obfuncs.h>
32 #include <ndk/pofuncs.h>
33 #include <ndk/psfuncs.h>
34 #include <ndk/rtlfuncs.h>
35 #include <ndk/setypes.h>
36 #include <ndk/umfuncs.h>
37
38 /* CSRSS Header */
39 #include <csr/csr.h>
40 #include <win/base.h>
41 #include <win/basemsg.h>
42 #include <win/conmsg.h>
43 #include <win/winmsg.h>
44
45 /* C Headers */
46 #include <ctype.h>
47 #include <limits.h>
48 #include <stdio.h>
49 #include <wchar.h>
50
51 /* DDK Driver Headers */
52 #include <ntddbeep.h>
53 #include <mountmgr.h>
54 #include <mountdev.h>
55
56 /* Internal Kernel32 Header */
57 #include "include/kernel32.h"
58
59 /* PSEH for SEH Support */
60 #include <pseh/pseh2.h>
61
62 /* Base Macros */
63 #include "include/base_x.h"
64
65 #endif