[Win32k]
[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: subsystems/win32/win32k/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 #define _NOCSECT_TYPE
67 #include <ddrawi.h>
68
69 /* SEH support with PSEH */
70 #include <pseh/pseh2.h>
71
72 /* CSRSS header */
73 #include <csrss/csrss.h>
74
75 /* Public Win32K headers */
76 #include <include/callback.h>
77 #include <include/ntusrtyp.h>
78 #include <include/ntuser.h>
79 #include <include/ntgdityp.h>
80 #include <include/ntgdibad.h>
81 #include <include/ntgdihdl.h>
82 #include <ntgdi.h>
83
84 /* Undocumented user definitions */
85 #include <undocuser.h>
86
87 /* Freetype headers */
88 #include <ft2build.h>
89 #include FT_FREETYPE_H
90 #include FT_GLYPH_H
91 #include FT_TYPE1_TABLES_H
92 #include <freetype/tttables.h>
93 #include <freetype/fttrigon.h>
94 #include <freetype/ftglyph.h>
95 #include <freetype/ftbitmap.h>
96 #include <freetype/ftoutln.h>
97 #include <freetype/ftwinfnt.h>
98 #include <freetype/freetype.h>
99
100 /* Internal Win32K header */
101 #include "win32kp.h"
102
103 #endif /* __W32K_H */