update msxml3 to wine 1.1.36

svn path=/trunk/; revision=45135
This commit is contained in:
Christoph von Wittich 2010-01-18 16:53:59 +00:00
parent b90d243037
commit 24cd3eb4cb
2 changed files with 2 additions and 2 deletions

View file

@ -104,7 +104,6 @@ static int wineXmlFileCloseCallback (void * context)
HRESULT WINAPI DllCanUnloadNow(void)
{
FIXME("\n");
return S_FALSE;
}

View 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;
}