- Major Win32k Header Cleanup: Add ntgdi.h based on latest Platform SDK Public header...
[reactos.git] / reactos / lib / user32 / include / user32.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: lib/user32/include/user32.h
5 * PURPOSE: Win32 User Library
6 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* C Headers */
12 #include <stdio.h>
13 #include <math.h>
14
15 /* SDK/NDK Headers */
16 #define _USER32_
17 #define OEMRESOURCE
18 #define NTOS_MODE_USER
19 #define WIN32_NO_STATUS
20 #include <windows.h>
21 #include <winuser.h>
22 #include <windowsx.h>
23 #include <winnls32.h>
24 #include <ndk/ntndk.h>
25
26 /* CSRSS Headers */
27 #include <csrss/csrss.h>
28
29 /* Public Win32K Headers */
30 #include <win32k/ntusrtyp.h>
31 #include <win32k/ntuser.h>
32 #include <win32k/callback.h>
33
34 /* WINE Headers */
35 #include <wine/debug.h>
36 #include <wine/unicode.h>
37
38 /* Internal User32 Headers */
39 #include "user32p.h"
40
41 /* FIXME: Use ntgdi.h then cleanup... */
42 HGDIOBJ STDCALL NtGdiSelectObject(HDC hDC, HGDIOBJ hGDIObj);
43 BOOL STDCALL NtGdiPatBlt(HDC hdcDst, INT x, INT y, INT cx, INT cy, DWORD rop4);
44 DWORD STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, DWORD *);