mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
xmllite/tests: Fix build with MSVC.
This commit is contained in:
parent
b235edb014
commit
4cd00f2b5e
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue