From 2d236179224db44c80d8e700ff8e3711cb08c85b Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 2 Dec 2010 13:37:59 +0000 Subject: [PATCH] [MSVC] Fix typeof(WineDirect3DCreateClipper) definition for MSVC. svn path=/branches/cmake-bringup/; revision=49897 --- include/reactos/wine/typeof.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/reactos/wine/typeof.h b/include/reactos/wine/typeof.h index daefcc185af..369e4029815 100644 --- a/include/reactos/wine/typeof.h +++ b/include/reactos/wine/typeof.h @@ -25,7 +25,7 @@ struct _xsltStylesheet; struct jpeg_decompress_struct; typedef struct IWineD3D * (__stdcall typeof(WineDirect3DCreate))(unsigned int, struct IUnknown *); -typedef struct IWineD3DClipper * (__stdcall typeof(WineDirect3DCreateClipper))(struct IUnknown *); +typedef struct IWineD3DClipper * (__stdcall typeof(WineDirect3DCreateClipper))(void); typedef int (__stdcall typeof(ImeInquire))(struct _tagIMEINFO *, __typeof_wchar *, const __typeof_wchar *); typedef int (__stdcall typeof(ImeConfigure))(void *, void *, unsigned int, void *); typedef int (__stdcall typeof(ImeDestroy))(unsigned int);