- Rewrite NtUserCreateDesktop and move the desktop thread completely in win32k like...
[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 MAKEINTATOM(i) (LPWSTR)((ULONG_PTR)((WORD)(i)))
40 #define WINBASEAPI
41 #define STARTF_USESIZE 2
42 #define STARTF_USEPOSITION 4
43 #include <stdarg.h>
44 #include <windef.h>
45 #define _USE_MATH_DEFINES
46 #include <math.h>
47 #include <intrin.h>
48
49 /* Avoid type casting, by defining RECT to RECTL */
50 #define RECT RECTL
51 #define PRECT PRECTL
52 #define LPRECT LPRECTL
53 #define LPCRECT LPCRECTL
54 #define POINT POINTL
55 #define LPPOINT PPOINTL
56 #define PPOINT PPOINTL
57
58 #include <winerror.h>
59 #include <wingdi.h>
60 #define NT_BUILD_ENVIRONMENT
61 #include <winddi.h>
62 #include <winuser.h>
63 #include <windowsx.h>
64 #include <prntfont.h>
65 #include <dde.h>
66 #include <wincon.h>
67 #include <winnls.h>
68 #define _NOCSECT_TYPE
69 #include <ddrawi.h>
70
71 /* SEH support with PSEH */
72 #include <pseh/pseh2.h>
73
74 /* CSRSS header */
75 #include <csrss/csrss.h>
76
77 /* Public Win32K headers */
78 #include <include/callback.h>
79 #include <include/ntusrtyp.h>
80 #include <include/ntuser.h>
81 #include <include/ntgdityp.h>
82 #include <include/ntgdibad.h>
83 #include <include/ntgdihdl.h>
84 #include <ntgdi.h>
85
86 /* Undocumented user definitions */
87 #include <undocuser.h>
88
89 /* Freetype headers */
90 #include <ft2build.h>
91 #include FT_FREETYPE_H
92 #include FT_GLYPH_H
93 #include FT_TYPE1_TABLES_H
94 #include <freetype/tttables.h>
95 #include <freetype/fttrigon.h>
96 #include <freetype/ftglyph.h>
97 #include <freetype/ftbitmap.h>
98 #include <freetype/ftoutln.h>
99 #include <freetype/ftwinfnt.h>
100 #include <freetype/freetype.h>
101
102 /* Internal Win32K header */
103 #include "win32kp.h"
104
105 #endif /* __W32K_H */