reactos/modules/rostests/winetests/comctl32/precomp.h
Justin Miller 0707475f69
[COMCTL32][MEDIA] Sync comctl32 to wine 5.0 (#6789)
For SOME reason comctl32 has been synched manually multiple times to different versions and different pots
This PR aims to fix that

With the exception of button.c which all in all is a massive fork over wines code entirely.
and datetime.c which is at wine 6.0

Comctl32 is now at wine-5.0
2024-09-03 21:54:05 -07:00

35 lines
631 B
C

#ifndef _COMCTL32_WINETEST_PRECOMP_H_
#define _COMCTL32_WINETEST_PRECOMP_H_
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define COBJMACROS
#define CONST_VTABLE
#include <stdio.h>
#include <wine/test.h>
#include <assert.h>
#include <wingdi.h>
#include <winuser.h>
#include <winnls.h>
#include <winreg.h>
#include <objbase.h>
#include <wine/commctrl.h>
#include "msg.h"
#include "resources.h"
#include "v6util.h"
#ifdef __REACTOS__
#include <ole2.h>
#define WM_KEYF1 0x004d
#define WM_CTLCOLOR 0x0019
#define WC_DIALOG (MAKEINTATOM(0x8002))
#endif
#endif /* !_COMCTL32_WINETEST_PRECOMP_H_ */