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
ae5c984b
Commit
ae5c984b
authored
Jan 20, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Use debugstr_* functions instead of wine_* prefixed for consistency.
parent
ca046f9e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
17 deletions
+17
-17
domdoc.c
dlls/msxml3/domdoc.c
+5
-5
schema.c
dlls/msxml3/schema.c
+5
-5
selection.c
dlls/msxml3/selection.c
+1
-1
stylesheet.c
dlls/msxml3/stylesheet.c
+4
-4
xslpattern.l
dlls/msxml3/xslpattern.l
+2
-2
No files found.
dlls/msxml3/domdoc.c
View file @
ae5c984b
...
...
@@ -2828,7 +2828,7 @@ static HRESULT WINAPI domdoc_setProperty(
{
hr
=
E_FAIL
;
WARN
(
"Syntax error in xmlns string: %s
\n\t
at token: %s
\n
"
,
wine_dbgstr_w
(
bstr
),
wine_db
gstr_an
((
const
char
*
)
pTokBegin
,
pTokEnd
-
pTokBegin
));
debugstr_w
(
bstr
),
debu
gstr_an
((
const
char
*
)
pTokBegin
,
pTokEnd
-
pTokBegin
));
continue
;
}
...
...
@@ -2849,7 +2849,7 @@ static HRESULT WINAPI domdoc_setProperty(
{
hr
=
E_FAIL
;
WARN
(
"Syntax error in xmlns string: %s
\n\t
at token: %s
\n
"
,
wine_dbgstr_w
(
bstr
),
wine_db
gstr_an
((
const
char
*
)
pTokBegin
,
pTokEnd
-
pTokBegin
));
debugstr_w
(
bstr
),
debu
gstr_an
((
const
char
*
)
pTokBegin
,
pTokEnd
-
pTokBegin
));
continue
;
}
...
...
@@ -2876,7 +2876,7 @@ static HRESULT WINAPI domdoc_setProperty(
else
{
WARN
(
"Syntax error in xmlns string: %s
\n\t
at token: %s
\n
"
,
wine_dbgstr_w
(
bstr
),
wine_db
gstr_an
((
const
char
*
)
pTokInner
,
pTokEnd
-
pTokInner
));
debugstr_w
(
bstr
),
debu
gstr_an
((
const
char
*
)
pTokInner
,
pTokEnd
-
pTokInner
));
list_add_tail
(
pNsList
,
&
ns_entry
->
entry
);
ns_entry
=
NULL
;
...
...
@@ -2906,7 +2906,7 @@ static HRESULT WINAPI domdoc_setProperty(
return
S_OK
;
}
FIXME
(
"Unknown property %s
\n
"
,
wine_db
gstr_w
(
p
));
FIXME
(
"Unknown property %s
\n
"
,
debu
gstr_w
(
p
));
return
E_FAIL
;
}
...
...
@@ -2966,7 +2966,7 @@ static HRESULT WINAPI domdoc_getProperty(
return
S_OK
;
}
FIXME
(
"Unknown property %s
\n
"
,
wine_db
gstr_w
(
p
));
FIXME
(
"Unknown property %s
\n
"
,
debu
gstr_w
(
p
));
return
E_FAIL
;
}
...
...
dlls/msxml3/schema.c
View file @
ae5c984b
...
...
@@ -589,7 +589,7 @@ HRESULT dt_validate(XDR_DT dt, xmlChar const* content)
xmlNsPtr
ns
;
HRESULT
hr
;
TRACE
(
"(dt:%s, %s)
\n
"
,
debugstr_dt
(
dt
),
wine_db
gstr_a
((
char
const
*
)
content
));
TRACE
(
"(dt:%s, %s)
\n
"
,
debugstr_dt
(
dt
),
debu
gstr_a
((
char
const
*
)
content
));
if
(
!
datatypes_schema
)
{
...
...
@@ -688,7 +688,7 @@ static xmlParserInputPtr external_entity_loader(const char *URL, const char *ID,
{
xmlParserInputPtr
input
;
TRACE
(
"(%s %s %p)
\n
"
,
wine_dbgstr_a
(
URL
),
wine_db
gstr_a
(
ID
),
ctxt
);
TRACE
(
"(%s %s %p)
\n
"
,
debugstr_a
(
URL
),
debu
gstr_a
(
ID
),
ctxt
);
assert
(
MSXML_hInstance
!=
NULL
);
assert
(
datatypes_rsrc
!=
NULL
);
...
...
@@ -922,7 +922,7 @@ static cache_entry* cache_entry_from_url(VARIANT url, xmlChar const* nsURI, MSXM
ERR
(
"IXMLDOMDocument3_load() returned 0x%08x
\n
"
,
hr
);
if
(
b
!=
VARIANT_TRUE
)
{
FIXME
(
"Failed to load doc at %s
\n
"
,
wine_db
gstr_w
(
V_BSTR
(
&
url
)));
FIXME
(
"Failed to load doc at %s
\n
"
,
debu
gstr_w
(
V_BSTR
(
&
url
)));
IXMLDOMDocument3_Release
(
domdoc
);
return
NULL
;
}
...
...
@@ -1142,7 +1142,7 @@ static HRESULT WINAPI schema_cache_get(IXMLDOMSchemaCollection2* iface, BSTR uri
cache_entry
*
entry
;
xmlChar
*
name
;
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
wine_db
gstr_w
(
uri
),
node
);
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debu
gstr_w
(
uri
),
node
);
if
(
This
->
version
==
MSXML6
)
return
E_NOTIMPL
;
...
...
@@ -1165,7 +1165,7 @@ static HRESULT WINAPI schema_cache_remove(IXMLDOMSchemaCollection2* iface, BSTR
{
schema_cache
*
This
=
impl_from_IXMLDOMSchemaCollection2
(
iface
);
xmlChar
*
name
=
uri
?
xmlchar_from_wchar
(
uri
)
:
xmlchar_from_wchar
(
emptyW
);
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
wine_db
gstr_w
(
uri
));
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debu
gstr_w
(
uri
));
xmlHashRemoveEntry
(
This
->
cache
,
name
,
cache_free
);
heap_free
(
name
);
...
...
dlls/msxml3/selection.c
View file @
ae5c984b
...
...
@@ -749,7 +749,7 @@ HRESULT create_selection(xmlNodePtr node, xmlChar* query, IXMLDOMNodeList **out)
xmlXPathContextPtr
ctxt
=
xmlXPathNewContext
(
node
->
doc
);
HRESULT
hr
;
TRACE
(
"(%p, %s, %p)
\n
"
,
node
,
wine_db
gstr_a
((
char
const
*
)
query
),
out
);
TRACE
(
"(%p, %s, %p)
\n
"
,
node
,
debu
gstr_a
((
char
const
*
)
query
),
out
);
*
out
=
NULL
;
if
(
!
This
||
!
ctxt
||
!
query
)
...
...
dlls/msxml3/stylesheet.c
View file @
ae5c984b
...
...
@@ -418,7 +418,7 @@ static HRESULT WINAPI xslprocessor_setStartMode(
{
xslprocessor
*
This
=
impl_from_IXSLProcessor
(
iface
);
FIXME
(
"(%p)->(%s %s): stub
\n
"
,
This
,
wine_dbgstr_w
(
p
),
wine_db
gstr_w
(
uri
));
FIXME
(
"(%p)->(%s %s): stub
\n
"
,
This
,
debugstr_w
(
p
),
debu
gstr_w
(
uri
));
return
E_NOTIMPL
;
}
...
...
@@ -557,8 +557,8 @@ static HRESULT WINAPI xslprocessor_addParameter(
{
xslprocessor
*
This
=
impl_from_IXSLProcessor
(
iface
);
FIXME
(
"(%p)->(%s %s %s): stub
\n
"
,
This
,
wine_db
gstr_w
(
p
),
debugstr_variant
(
&
var
),
wine_db
gstr_w
(
uri
));
FIXME
(
"(%p)->(%s %s %s): stub
\n
"
,
This
,
debu
gstr_w
(
p
),
debugstr_variant
(
&
var
),
debu
gstr_w
(
uri
));
return
E_NOTIMPL
;
}
...
...
@@ -569,7 +569,7 @@ static HRESULT WINAPI xslprocessor_addObject(
{
xslprocessor
*
This
=
impl_from_IXSLProcessor
(
iface
);
FIXME
(
"(%p)->(%p %s): stub
\n
"
,
This
,
obj
,
wine_db
gstr_w
(
uri
));
FIXME
(
"(%p)->(%p %s): stub
\n
"
,
This
,
obj
,
debu
gstr_w
(
uri
));
return
E_NOTIMPL
;
}
...
...
dlls/msxml3/xslpattern.l
View file @
ae5c984b
...
...
@@ -155,7 +155,7 @@ ANY (.)
xmlChar* XSLPattern_to_XPath(xmlXPathContextPtr ctxt, xmlChar const* xslpat_str)
{
parser_param p;
TRACE("(%s)\n",
wine_db
gstr_a((char const*)xslpat_str));
TRACE("(%s)\n",
debu
gstr_a((char const*)xslpat_str));
memset(&p, 0, sizeof(parser_param));
p.ctx = ctxt;
p.in = xslpat_str;
...
...
@@ -166,7 +166,7 @@ xmlChar* XSLPattern_to_XPath(xmlXPathContextPtr ctxt, xmlChar const* xslpat_str)
xslpattern_parse(&p, p.yyscanner);
TRACE("=> %s\n",
wine_db
gstr_a((char const*)p.out));
TRACE("=> %s\n",
debu
gstr_a((char const*)p.out));
xslpattern_lex_destroy(p.yyscanner);
if (p.err)
...
...
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