[uxtheme]
[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/w32k.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 <ntifs.h>
21 #include <tvout.h>
22 #include <ndk/exfuncs.h>
23 #include <ndk/kdfuncs.h>
24 #include <ndk/kefuncs.h>
25 #include <ndk/lpcfuncs.h>
26 #include <ndk/mmfuncs.h>
27 #include <ndk/obfuncs.h>
28 #include <ndk/psfuncs.h>
29 #include <ndk/rtlfuncs.h>
30 #include <ntstrsafe.h>
31
32 /* Win32 Headers */
33 /* FIXME: Defines in winbase.h that we need... */
34 typedef struct _SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
35 #define WINBASEAPI
36 #define STARTF_USESIZE 2
37 #define STARTF_USEPOSITION 4
38 #include <stdarg.h>
39 #include <windef.h>
40 #include <math.h>
41
42 /* Avoid type casting, by defining RECT to RECTL */
43 #define RECT RECTL
44 #define PRECT PRECTL
45 #define LPRECT LPRECTL
46 #define LPCRECT LPCRECTL
47 #define POINT POINTL
48 #define LPPOINT PPOINTL
49 #define PPOINT PPOINTL
50
51 #include <winerror.h>
52 #include <wingdi.h>
53 #define NT_BUILD_ENVIRONMENT
54 #include <winddi.h>
55 #include <winuser.h>
56 #include <prntfont.h>
57 #include <dde.h>
58 #include <wincon.h>
59 #define _NOCSECT_TYPE
60 #include <ddrawi.h>
61
62 /* SEH Support with PSEH */
63 #include <pseh/pseh2.h>
64
65 /* CSRSS Header */
66 #include <csrss/csrss.h>
67
68 /* Public Win32K Headers */
69 #include <win32k/callback.h>
70 #include <win32k/ntusrtyp.h>
71 #include <win32k/ntuser.h>
72 #include <win32k/ntgdityp.h>
73 #include <win32k/ntgdibad.h>
74 #include <win32k/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 <freetype/freetype.h>
83
84 /* Internal Win32K Header */
85 #include "include/win32kp.h"
86
87 #endif /* __W32K_H */