921f4588644e26dac4a3ccafc36a624be7c297cc
[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 <ntddk.h>
20 #include <ntddmou.h>
21 #include <ntddvdeo.h>
22 #include <ntifs.h>
23 #include <tvout.h>
24 #include <ndk/exfuncs.h>
25 #include <ndk/kdfuncs.h>
26 #include <ndk/kefuncs.h>
27 #include <ndk/lpcfuncs.h>
28 #include <ndk/mmfuncs.h>
29 #include <ndk/obfuncs.h>
30 #include <ndk/psfuncs.h>
31 #include <ndk/rtlfuncs.h>
32 #include <ntstrsafe.h>
33 #include <ntddkbd.h>
34 #include <bugcodes.h>
35
36 /* Win32 headers */
37 /* FIXME: Defines in winbase.h that we need... */
38 typedef struct _SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
39 #define WINBASEAPI
40 #define STARTF_USESIZE 2
41 #define STARTF_USEPOSITION 4
42 #include <stdarg.h>
43 #include <windef.h>
44 #define _USE_MATH_DEFINES
45 #include <math.h>
46 #include <intrin.h>
47
48 /* Avoid type casting, by defining RECT to RECTL */
49 #define RECT RECTL
50 #define PRECT PRECTL
51 #define LPRECT LPRECTL
52 #define LPCRECT LPCRECTL
53 #define POINT POINTL
54 #define LPPOINT PPOINTL
55 #define PPOINT PPOINTL
56
57 #include <winerror.h>
58 #include <wingdi.h>
59 #define NT_BUILD_ENVIRONMENT
60 #include <winddi.h>
61 #include <winuser.h>
62 #include <windowsx.h>
63 #include <prntfont.h>
64 #include <dde.h>
65 #include <wincon.h>
66 #include <winnls.h>
67 #define _NOCSECT_TYPE
68 #include <ddrawi.h>
69
70 /* SEH support with PSEH */
71 #include <pseh/pseh2.h>
72
73 /* CSRSS header */
74 #include <csrss/csrss.h>
75
76 /* Public Win32K headers */
77 #include <include/callback.h>
78 #include <include/ntusrtyp.h>
79 #include <include/ntuser.h>
80 #include <include/ntgdityp.h>
81 #include <include/ntgdibad.h>
82 #include <include/ntgdihdl.h>
83 #include <ntgdi.h>
84
85 /* Undocumented user definitions */
86 #include <undocuser.h>
87
88 /* Freetype headers */
89 #include <ft2build.h>
90 #include FT_FREETYPE_H
91 #include FT_GLYPH_H
92 #include FT_TYPE1_TABLES_H
93 #include <freetype/tttables.h>
94 #include <freetype/fttrigon.h>
95 #include <freetype/ftglyph.h>
96 #include <freetype/ftbitmap.h>
97 #include <freetype/ftoutln.h>
98 #include <freetype/ftwinfnt.h>
99 #include <freetype/freetype.h>
100
101 /* Internal Win32K header */
102 #include "win32kp.h"
103
104 #endif /* __W32K_H */