msxml3: Make some functions static in node.c.

Francois Gouget fgouget at free.fr
Tue Nov 24 04:02:06 CST 2009


---
 dlls/msxml3/node.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index eadd4e9..ed6c8c6 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))
-- 
1.6.5



More information about the wine-patches mailing list