- Revert 44301
[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/ntndk.h>
24
25
26 #undef NTDDI_WS03SP1
27
28
29 /* CSRSS Header */
30 #include <csrss/csrss.h>
31
32 /* C Headers */
33 #include <ctype.h>
34 #include <limits.h>
35 #include <stdio.h>
36 #include <wchar.h>
37
38 /* DDK Driver Headers */
39 #include <ntddbeep.h>
40 #include <mountmgr.h>
41 #include <mountdev.h>
42
43 /* Internal Kernel32 Header */
44 #include "include/kernel32.h"
45
46 /* PSEH for SEH Support */
47 #include <pseh/pseh2.h>
48
49 #endif