Francois Gouget : msxml3: Make some functions static in node.c.

Alexandre Julliard julliard at winehq.org
Tue Nov 24 12:40:23 CST 2009


Module: wine
Branch: master
Commit: e98719f79ebc60ff041aa29f0951346d219b350b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e98719f79ebc60ff041aa29f0951346d219b350b

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Nov 24 11:02:06 2009 +0100

msxml3: Make some functions static in node.c.

---

 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))




More information about the wine-cvs mailing list