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