1 #ifndef _GDI32_APITEST_PRECOMP_H_ 2 #define _GDI32_APITEST_PRECOMP_H_ 3 4 #define WIN32_NO_STATUS 5 #define _INC_WINDOWS 6 #define COM_NO_WINDOWS_H 7 8 #include <apitest.h> 9 #include <wingdi.h> 10 #include <winuser.h> 11 #include <winddi.h> 12 #include <winnls.h> 13 #include <include/ntgdityp.h> 14 #include <include/ntgdihdl.h> 15 #include <stdio.h> 16 #include <strsafe.h> 17 18 #define CLIPRGN 1 19 20 #define TEST(x) ok(x, #x"\n") 21 #define RTEST(x) ok(x, #x"\n") 22 23 #define ok_rect(_prc, _left, _top, _right, _bottom) \ 24 ok_int((_prc)->left, _left); \ 25 ok_int((_prc)->top, _top); \ 26 ok_int((_prc)->right, _right); \ 27 ok_int((_prc)->bottom, _bottom); \ 28 29 #endif /* _GDI32_APITEST_PRECOMP_H_ */ 30