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
3aa36b53
Commit
3aa36b53
authored
Jun 19, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Constify some variables.
parent
11f59093
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
domimpl.c
dlls/msxml3/domimpl.c
+4
-4
pi.c
dlls/msxml3/pi.c
+2
-2
No files found.
dlls/msxml3/domimpl.c
View file @
3aa36b53
...
...
@@ -174,10 +174,10 @@ static HRESULT WINAPI dimimpl_Invoke(
static
HRESULT
WINAPI
dimimpl_hasFeature
(
IXMLDOMImplementation
*
This
,
BSTR
feature
,
BSTR
version
,
VARIANT_BOOL
*
hasFeature
)
{
static
WCHAR
bVersion
[]
=
{
'1'
,
'.'
,
'0'
,
0
};
static
WCHAR
bXML
[]
=
{
'X'
,
'M'
,
'L'
,
0
};
static
WCHAR
bDOM
[]
=
{
'D'
,
'O'
,
'M'
,
0
};
static
WCHAR
bMSDOM
[]
=
{
'M'
,
'S'
,
'-'
,
'D'
,
'O'
,
'M'
,
0
};
static
const
WCHAR
bVersion
[]
=
{
'1'
,
'.'
,
'0'
,
0
};
static
const
WCHAR
bXML
[]
=
{
'X'
,
'M'
,
'L'
,
0
};
static
const
WCHAR
bDOM
[]
=
{
'D'
,
'O'
,
'M'
,
0
};
static
const
WCHAR
bMSDOM
[]
=
{
'M'
,
'S'
,
'-'
,
'D'
,
'O'
,
'M'
,
0
};
BOOL
bValidFeature
=
FALSE
;
BOOL
bValidVersion
=
FALSE
;
...
...
dlls/msxml3/pi.c
View file @
3aa36b53
...
...
@@ -201,7 +201,7 @@ static HRESULT WINAPI dom_pi_put_nodeValue(
{
dom_pi
*
This
=
impl_from_IXMLDOMProcessingInstruction
(
iface
);
BSTR
sTarget
;
static
WCHAR
szXML
[]
=
{
'x'
,
'm'
,
'l'
,
0
};
static
const
WCHAR
szXML
[]
=
{
'x'
,
'm'
,
'l'
,
0
};
HRESULT
hr
;
TRACE
(
"%p
\n
"
,
This
);
...
...
@@ -526,7 +526,7 @@ static HRESULT WINAPI dom_pi_put_data(
HRESULT
hr
=
E_FAIL
;
VARIANT
val
;
BSTR
sTarget
;
static
WCHAR
szXML
[]
=
{
'x'
,
'm'
,
'l'
,
0
};
static
const
WCHAR
szXML
[]
=
{
'x'
,
'm'
,
'l'
,
0
};
TRACE
(
"%p %s
\n
"
,
This
,
debugstr_w
(
data
)
);
...
...
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