Commit e98719f7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msxml3: Make some functions static in node.c.

parent 2043035e
......@@ -946,14 +946,14 @@ static HRESULT WINAPI xmlnode_get_definition(
static HRESULT WINAPI xmlnode_get_dataType(IXMLDOMNode*, VARIANT*);
inline BYTE hex_to_byte(xmlChar c)
static inline BYTE hex_to_byte(xmlChar c)
{
if(c <= '9') return c-'0';
if(c <= 'F') return c-'A'+10;
return c-'a'+10;
}
inline BYTE base64_to_byte(xmlChar c)
static inline BYTE base64_to_byte(xmlChar c)
{
if(c == '+') return 62;
if(c == '/') return 63;
......@@ -962,7 +962,7 @@ inline BYTE base64_to_byte(xmlChar c)
return c-'a'+26;
}
inline HRESULT VARIANT_from_xmlChar(xmlChar *str, VARIANT *v, BSTR type)
static inline HRESULT VARIANT_from_xmlChar(xmlChar *str, VARIANT *v, BSTR type)
{
if(!type || !lstrcmpiW(type, szString) ||
!lstrcmpiW(type, szNumber) || !lstrcmpiW(type, szUUID))
......
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