1 #ifndef _WIN32NT_APITEST_H_
2 #define _WIN32NT_APITEST_H_
3 
4 /* Definitions */
5 #define WIN32_NO_STATUS
6 #define _INC_WINDOWS
7 #define COM_NO_WINDOWS_H
8 #define NTOS_MODE_USER
9 
10 #include <apitest.h>
11 
12 /* SDK/DDK/NDK Headers. */
13 #include <stdio.h>
14 #include <wingdi.h>
15 #include <objbase.h>
16 #include <imm.h>
17 
18 #include <winddi.h>
19 #include <prntfont.h>
20 
21 #include <ndk/rtlfuncs.h>
22 #include <ndk/mmfuncs.h>
23 
24 /* Public Win32K Headers */
25 #include <ntuser.h>
26 #include <ntgdityp.h>
27 #include <ntgdi.h>
28 #include <ntgdihdl.h>
29 
30 #include <gditools.h>
31 
32 #define TEST(x) ok(x, "TEST failed: %s\n", #x)
33 #define RTEST(x) ok(x, "RTEST failed: %s\n", #x)
34 
35 #define GdiHandleTable GdiQueryTable()
36 
37 #endif /* !_WIN32NT_APITEST_H_ */
38