From f204f24c98756c8fab033c3c6354b0e159b96048 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 20 Mar 2018 13:09:18 +0100 Subject: [PATCH] [INCLUDE/WINE] Addendum to bab6b90 for the MSVC build. --- sdk/include/reactos/wine/typeof.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sdk/include/reactos/wine/typeof.h b/sdk/include/reactos/wine/typeof.h index b7ab75590b1..1a84c5fedac 100644 --- a/sdk/include/reactos/wine/typeof.h +++ b/sdk/include/reactos/wine/typeof.h @@ -26,6 +26,9 @@ struct jpeg_decompress_struct; struct _iobuf; struct _xsltTransformContext; struct _xmlOutputBuffer; +struct _xmlXPathParserContext; +struct _xmlDict; +enum xsltLoadType; typedef struct IWineD3D * (__stdcall typeof(WineDirect3DCreate))(unsigned int, struct IUnknown *); typedef struct IWineD3DClipper * (__stdcall typeof(WineDirect3DCreateClipper))(struct IUnknown *); @@ -56,6 +59,11 @@ typedef struct _xsltStylesheet * (__cdecl typeof(xsltNextImport))(struct _xsltSt typedef void (__cdecl typeof(xsltCleanupGlobals))(void); typedef void (__cdecl typeof(xsltFreeStylesheet))(struct _xsltStylesheet *); typedef struct _xsltStylesheet * (__cdecl typeof(xsltParseStylesheetDoc))(struct _xmlDoc *); +typedef void (__cdecl typeof(xsltFunctionNodeSet))(struct _xmlXPathParserContext *, int); +typedef void (__cdecl typeof(xmlXPathFunction))(struct _xmlXPathParserContext *, int); +typedef int (__cdecl typeof(xsltRegisterExtModuleFunction))(const unsigned char *, const unsigned char *, typeof(xmlXPathFunction)); +typedef struct _xmlDoc * (__cdecl typeof(xsltDocLoaderFunc))(const unsigned char *, struct _xmlDict *, int, void *, enum xsltLoadType); +typedef void (__cdecl typeof(xsltSetLoaderFunc))(typeof(xsltDocLoaderFunc)); typedef struct jpeg_error_mgr * (__cdecl typeof(jpeg_std_error))(struct jpeg_error_mgr *); typedef void (__cdecl typeof(jpeg_CreateDecompress))(struct jpeg_decompress_struct *, int, __typeof_size); typedef int (__cdecl typeof(jpeg_read_header))(struct jpeg_decompress_struct *, int);