Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7ff24491
Commit
7ff24491
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Win64 printf format warning fixes.
parent
36063b7d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
Makefile.in
dlls/msxml3/Makefile.in
+1
-1
domdoc.c
dlls/msxml3/domdoc.c
+2
-2
node.c
dlls/msxml3/node.c
+1
-1
parseerror.c
dlls/msxml3/parseerror.c
+6
-6
No files found.
dlls/msxml3/Makefile.in
View file @
7ff24491
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
-DWINE_NO_LONG_AS_INT
EXTRADEFS
=
-DCOM_NO_WINDOWS_H
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
dlls/msxml3/domdoc.c
View file @
7ff24491
...
...
@@ -174,14 +174,14 @@ typedef struct _domdoc
LONG
xmldoc_add_ref
(
xmlDocPtr
doc
)
{
LONG
ref
=
InterlockedIncrement
((
LONG
*
)
&
doc
->
_private
);
TRACE
(
"%
l
d
\n
"
,
ref
);
TRACE
(
"%d
\n
"
,
ref
);
return
ref
;
}
LONG
xmldoc_release
(
xmlDocPtr
doc
)
{
LONG
ref
=
InterlockedDecrement
((
LONG
*
)
&
doc
->
_private
);
TRACE
(
"%
l
d
\n
"
,
ref
);
TRACE
(
"%d
\n
"
,
ref
);
if
(
ref
==
0
)
{
TRACE
(
"freeing docptr %p
\n
"
,
doc
);
...
...
dlls/msxml3/node.c
View file @
7ff24491
...
...
@@ -743,7 +743,7 @@ static HRESULT WINAPI xmlnode_get_baseName(
break
;
}
TRACE
(
"returning %08
l
x str = %s
\n
"
,
r
,
debugstr_w
(
str
)
);
TRACE
(
"returning %08x str = %s
\n
"
,
r
,
debugstr_w
(
str
)
);
*
nameString
=
str
;
return
r
;
...
...
dlls/msxml3/parseerror.c
View file @
7ff24491
...
...
@@ -78,7 +78,7 @@ static ULONG WINAPI parseError_AddRef(
{
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref now %
l
d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref now %d
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -89,7 +89,7 @@ static ULONG WINAPI parseError_Release(
ULONG
ref
;
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ref now %
l
d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ref now %d
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
{
SysFreeString
(
This
->
url
);
...
...
@@ -148,7 +148,7 @@ static HRESULT WINAPI parseError_Invoke(
static
HRESULT
WINAPI
parseError_get_errorCode
(
IXMLDOMParseError
*
iface
,
LONG
*
code
)
long
*
code
)
{
parse_error_t
*
This
=
impl_from_IXMLDOMParseError
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
code
);
...
...
@@ -195,7 +195,7 @@ static HRESULT WINAPI parseError_get_srcText(
static
HRESULT
WINAPI
parseError_get_line
(
IXMLDOMParseError
*
iface
,
LONG
*
line
)
long
*
line
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
...
...
@@ -203,7 +203,7 @@ static HRESULT WINAPI parseError_get_line(
static
HRESULT
WINAPI
parseError_get_linepos
(
IXMLDOMParseError
*
iface
,
LONG
*
linepos
)
long
*
linepos
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
...
...
@@ -211,7 +211,7 @@ static HRESULT WINAPI parseError_get_linepos(
static
HRESULT
WINAPI
parseError_get_filepos
(
IXMLDOMParseError
*
iface
,
LONG
*
filepos
)
long
*
filepos
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment