[MSXML3]
authorChristoph von Wittich <christoph_vw@reactos.org>
Mon, 18 Jan 2010 16:53:59 +0000 (16:53 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Mon, 18 Jan 2010 16:53:59 +0000 (16:53 +0000)
update msxml3 to wine 1.1.36

svn path=/trunk/; revision=45135

reactos/dll/win32/msxml3/main.c
reactos/dll/win32/msxml3/node.c

index c31a53a..9b1eb82 100644 (file)
@@ -104,7 +104,6 @@ static int wineXmlFileCloseCallback (void * context)
 
 HRESULT WINAPI DllCanUnloadNow(void)
 {
-    FIXME("\n");
     return S_FALSE;
 }
 
index ed6c8c6..82f4c56 100644 (file)
@@ -1118,7 +1118,8 @@ static inline HRESULT VARIANT_from_xmlChar(xmlChar *str, VARIANT *v, BSTR type)
         if(!V_BSTR(&src))
             return E_OUTOFMEMORY;
 
-        hres = VariantChangeType(v, &src, 0, V_VT(v));
+        hres = VariantChangeTypeEx(v, &src, MAKELCID(MAKELANGID(
+                        LANG_ENGLISH,SUBLANG_ENGLISH_US),SORT_DEFAULT),0, V_VT(v));
         VariantClear(&src);
         return hres;
     }