IsMetaFile is an easy check used when porting wine static and listbox.
[reactos.git] / reactos / dll / win32 / 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 <assert.h>
13 #include <stdio.h>
14 #include <math.h>
15
16 /* SDK/NDK Headers */
17 #define _USER32_
18 #define OEMRESOURCE
19 #define NTOS_MODE_USER
20 #define WIN32_NO_STATUS
21 #include <windows.h>
22 #include <winuser.h>
23 #include <windowsx.h>
24 #include <winnls32.h>
25 #include <ndk/ntndk.h>
26
27 /* CSRSS Headers */
28 #include <csrss/csrss.h>
29
30 /* Public Win32K Headers */
31 #include <win32k/ntusrtyp.h>
32 #include <win32k/ntuser.h>
33 #include <win32k/callback.h>
34
35 /* WINE Headers */
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 LONG STDCALL GdiGetCharDimensions(HDC, LPTEXTMETRICW, LONG *);
45 BOOL FASTCALL IsMetaFile(HDC);
46