1 
2 #ifndef _COMCTL32_WINETEST_PRECOMP_H_
3 #define _COMCTL32_WINETEST_PRECOMP_H_
4 
5 #define WIN32_NO_STATUS
6 #define _INC_WINDOWS
7 #define COM_NO_WINDOWS_H
8 #define COBJMACROS
9 #define CONST_VTABLE
10 
11 #include <stdio.h>
12 
13 #include <wine/test.h>
14 #include <assert.h>
15 #include <wingdi.h>
16 #include <winuser.h>
17 #include <winnls.h>
18 #include <winreg.h>
19 #include <objbase.h>
20 #include <wine/commctrl.h>
21 
22 #include "msg.h"
23 #include "resources.h"
24 #include "v6util.h"
25 
26 #ifdef __REACTOS__
27 #include <ole2.h>
28 
29 #define WM_KEYF1 0x004d
30 #define WM_CTLCOLOR 0x0019
31 
32 #define WC_DIALOG       (MAKEINTATOM(0x8002))
33 #endif
34 
35 #endif /* !_COMCTL32_WINETEST_PRECOMP_H_ */
36