Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
4cd00f2b
Commit
4cd00f2b
authored
13 years ago
by
Thomas Faber
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
xmllite/tests: Fix build with MSVC.
parent
b235edb0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/xmllite/tests/reader.c
+2
-2
2 additions, 2 deletions
dlls/xmllite/tests/reader.c
dlls/xmllite/tests/writer.c
+1
-1
1 addition, 1 deletion
dlls/xmllite/tests/writer.c
with
3 additions
and
3 deletions
dlls/xmllite/tests/reader.c
+
2
−
2
View file @
4cd00f2b
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
dlls/xmllite/tests/writer.c
+
1
−
1
View file @
4cd00f2b
...
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment