Move the inclusion of <debug.h> to individual files and consolidate the inclusion...
[reactos.git] / reactos / subsys / win32k / w32k.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Graphics Subsystem
4 * FILE: subsys/win32k/w32k.h
5 * PURPOSE: Main Win32K Header
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* We are Win32K */
12 #define __WIN32K__
13
14 /* ReactOS Config */
15 #include <roscfg.h>
16
17 /* DDK/NDK/SDK Headers */
18 #include <ddk/ntddk.h>
19 #include <ddk/ntifs.h>
20 #include <ddk/ddrawint.h>
21 #include <ddk/d3dnthal.h>
22 #include <ddk/winddi.h>
23 #include <ddk/ntddmou.h>
24 #include <windows.h> /* FIXME ? */
25 #include <windowsx.h> /* FIXME ? */
26 #include <ndk/ntndk.h>
27
28 /* FIXME: ReactOS will be R-Rated if I really write what I'm about to */
29 NTSTATUS
30 STDCALL
31 MmCopyFromCaller(PVOID Dest, const VOID *Src, ULONG NumberOfBytes);
32 NTSTATUS
33 STDCALL
34 MmCopyToCaller(PVOID Dest, const VOID *Src, ULONG NumberOfBytes);
35
36 /* SEH Support with PSEH */
37 #include <pseh.h>
38
39 /* CSRSS Header */
40 #include <csrss/csrss.h>
41
42 /* FIXME: ROSRTL */
43 #include <rosrtl/string.h>
44
45 /* Helper Header */
46 #include <reactos/helper.h>
47
48 /* External Win32K Header */
49 #include <win32k/win32k.h>
50 #include <win32k/win32.h>
51
52 /* Internal Win32K Header */
53 #include "include/win32k.h"
54