Commit 0b8c8035 authored by Alexandre Julliard's avatar Alexandre Julliard

msxml3: Make some functions and variables static.

parent 1249c642
......@@ -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,
......
......@@ -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,
......
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment