Revert tree-restructure attempt: r66583, r66582, r66581, r66578, sauf ntdll changes...
[reactos.git] / reactos / win32ss / pch.h
1 #ifndef __W32K_H
2 #define __W32K_H
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS Win32k subsystem
6 * FILE: win32ss/pch.h
7 * PURPOSE: Main Win32K Header
8 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
9 */
10
11 /* INCLUDES ******************************************************************/
12
13 #define _NO_COM
14 #define STRICT
15
16 /* DDK/NDK/SDK headers */
17 #undef NTDDI_VERSION
18 #define NTDDI_VERSION NTDDI_WS03SP1
19 #include <ntifs.h>
20 #include <ntddmou.h>
21 #include <ndk/exfuncs.h>
22 #include <ndk/kdfuncs.h>
23 #include <ndk/kefuncs.h>
24 #include <ndk/mmfuncs.h>
25 #include <ndk/obfuncs.h>
26 #include <ndk/psfuncs.h>
27 #include <ndk/rtlfuncs.h>
28 #include <ntstrsafe.h>
29 #include <ntddkbd.h>
30
31 /* Win32 headers */
32 /* FIXME: Defines in winbase.h that we need... */
33 typedef struct _SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
34 #define MAKEINTATOM(i) (LPWSTR)((ULONG_PTR)((WORD)(i)))
35 #define WINBASEAPI
36 #define STARTF_USESHOWWINDOW 1
37 #define STARTF_USESIZE 2
38 #define STARTF_USEPOSITION 4
39 #include <stdarg.h>
40 #include <windef.h>
41 #define _USE_MATH_DEFINES
42 #include <math.h>
43 #include <intrin.h>
44
45 /* Avoid type casting, by defining RECT to RECTL */
46 #define RECT RECTL
47 #define PRECT PRECTL
48 #define LPRECT LPRECTL
49 #define LPCRECT LPCRECTL
50 #define POINT POINTL
51 #define LPPOINT PPOINTL
52 #define PPOINT PPOINTL
53
54 #include <winerror.h>
55 #include <wingdi.h>
56 #define NT_BUILD_ENVIRONMENT
57 #define _ENGINE_EXPORT_
58 #include <winddi.h>
59 #include <winuser.h>
60 #include <prntfont.h>
61 #define _NOCSECT_TYPE
62 #include <ddrawi.h>
63 #include <imm.h>
64
65 /* SEH support with PSEH */
66 #include <pseh/pseh2.h>
67
68 /* Public Win32K headers */
69 #include <include/callback.h>
70 #include <include/ntusrtyp.h>
71 #include <include/ntuser.h>
72 #include <include/ntgdityp.h>
73 #include <include/ntgdibad.h>
74 #include <include/ntgdihdl.h>
75 #include <ntgdi.h>
76
77 /* Undocumented user definitions */
78 #include <undocuser.h>
79
80 /* Freetype headers */
81 #include <ft2build.h>
82 #include FT_FREETYPE_H
83
84 /* Internal Win32K header */
85 #include "win32kp.h"
86
87 #endif /* __W32K_H */