From: Thomas Faber Date: Mon, 19 Mar 2012 16:12:15 +0000 (+0000) Subject: [XMLLITE_WINETEST] X-Git-Tag: backups/ros-csrss@57560~1339 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=f6740b2dba7c61cf3b2a9473ef0d09d73f340713 [XMLLITE_WINETEST] - Fix MSVC build. Already sent upstream. svn path=/trunk/; revision=56191 --- diff --git a/rostests/winetests/xmllite/reader.c b/rostests/winetests/xmllite/reader.c index ec474531d8e..1f1b2ecc77e 100644 --- a/rostests/winetests/xmllite/reader.c +++ b/rostests/winetests/xmllite/reader.c @@ -33,8 +33,8 @@ DEFINE_GUID(IID_IXmlReaderInput, 0x0b3ccc9b, 0x9214, 0x428b, 0xa2, 0xae, 0xef, 0x3a, 0xa8, 0x71, 0xaf, 0xda); -static HRESULT WINAPI (*pCreateXmlReader)(REFIID riid, void **ppvObject, IMalloc *pMalloc); -static HRESULT WINAPI (*pCreateXmlReaderInputWithEncodingName)(IUnknown *stream, +static HRESULT (WINAPI *pCreateXmlReader)(REFIID riid, void **ppvObject, IMalloc *pMalloc); +static HRESULT (WINAPI *pCreateXmlReaderInputWithEncodingName)(IUnknown *stream, IMalloc *pMalloc, LPCWSTR encoding, BOOL hint, diff --git a/rostests/winetests/xmllite/writer.c b/rostests/winetests/xmllite/writer.c index e98db7bea4a..af4e1a86019 100644 --- a/rostests/winetests/xmllite/writer.c +++ b/rostests/winetests/xmllite/writer.c @@ -28,7 +28,7 @@ #include "xmllite.h" #include "wine/test.h" -static HRESULT WINAPI (*pCreateXmlWriter)(REFIID riid, void **ppvObject, IMalloc *pMalloc); +static HRESULT (WINAPI *pCreateXmlWriter)(REFIID riid, void **ppvObject, IMalloc *pMalloc); static void test_writer_create(void) {