From e98719f79ebc60ff041aa29f0951346d219b350b Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 24 Nov 2009 11:02:06 +0100 Subject: [PATCH] msxml3: Make some functions static in node.c. --- dlls/msxml3/node.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index eadd4e96486..ed6c8c6c0aa 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -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)) -- 2.11.4.GIT