Francois Gouget : msxml3: Make some functions static in node.c.
Module: wine Branch: master Commit: e98719f79ebc60ff041aa29f0951346d219b350b URL: http://source.winehq.org/git/wine.git/?a=commit;h=e98719f79ebc60ff041aa29f09... Author: Francois Gouget <fgouget(a)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))
participants (1)
-
Alexandre Julliard