Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0b8c8035
Commit
0b8c8035
authored
Aug 02, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Make some functions and variables static.
parent
1249c642
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
domdoc.c
dlls/msxml3/domdoc.c
+3
-3
factory.c
dlls/msxml3/factory.c
+1
-1
nodelist.c
dlls/msxml3/nodelist.c
+2
-2
No files found.
dlls/msxml3/domdoc.c
View file @
0b8c8035
...
...
@@ -144,7 +144,7 @@ static HRESULT WINAPI bsc_OnObjectAvailable(
return
S_OK
;
}
const
struct
IBindStatusCallbackVtbl
bsc_vtbl
=
static
const
struct
IBindStatusCallbackVtbl
bsc_vtbl
=
{
bsc_QueryInterface
,
bsc_AddRef
,
...
...
@@ -1055,7 +1055,7 @@ static HRESULT WINAPI domdoc_abort(
}
BOOL
bstr_to_utf8
(
BSTR
bstr
,
char
**
pstr
,
int
*
plen
)
static
BOOL
bstr_to_utf8
(
BSTR
bstr
,
char
**
pstr
,
int
*
plen
)
{
UINT
len
,
blen
=
SysStringLen
(
bstr
);
LPSTR
str
;
...
...
@@ -1233,7 +1233,7 @@ static HRESULT WINAPI domdoc_put_onTransformNode(
return
E_NOTIMPL
;
}
const
struct
IXMLDOMDocumentVtbl
domdoc_vtbl
=
static
const
struct
IXMLDOMDocumentVtbl
domdoc_vtbl
=
{
domdoc_QueryInterface
,
domdoc_AddRef
,
...
...
dlls/msxml3/factory.c
View file @
0b8c8035
...
...
@@ -115,7 +115,7 @@ static HRESULT WINAPI xmlcf_LockServer(
return
S_OK
;
}
const
struct
IClassFactoryVtbl
xmlcf_vtbl
=
static
const
struct
IClassFactoryVtbl
xmlcf_vtbl
=
{
xmlcf_QueryInterface
,
xmlcf_AddRef
,
...
...
dlls/msxml3/nodelist.c
View file @
0b8c8035
...
...
@@ -77,8 +77,8 @@ static int create_xslt_parser( struct xslt_info *info, xmlNodePtr node, const xm
return
0
;
return
1
;
}
void
free_xslt_info
(
struct
xslt_info
*
info
)
static
void
free_xslt_info
(
struct
xslt_info
*
info
)
{
if
(
info
->
pattern
)
xsltFreeCompMatchList
(
info
->
pattern
);
...
...
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