Commit e84b0796 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard

Added stubs for LcidToRfc1766[A/W].

parent 5edd6610
......@@ -549,6 +549,24 @@ HRESULT WINAPI IsConvertINetStringAvailable(
return S_FALSE;
}
HRESULT WINAPI LcidToRfc1766A(
LCID Locale,
LPSTR pszRfc1766,
INT nChar)
{
FIXME("%ld %s %u\n", Locale, pszRfc1766, nChar);
return S_FALSE;
}
HRESULT WINAPI LcidToRfc1766W(
LCID Locale,
LPWSTR pszRfc1766,
INT nChar)
{
FIXME("%ld %p %u\n", Locale, pszRfc1766, nChar);
return S_FALSE;
}
/******************************************************************************
* MLANG ClassFactory
*/
......
......@@ -8,7 +8,7 @@
@ stdcall DllUnregisterServer() MLANG_DllUnregisterServer
@ stub GetGlobalFontLinkObject
@ stdcall IsConvertINetStringAvailable(long long)
@ stub LcidToRfc1766A
@ stub LcidToRfc1766W
@ stdcall LcidToRfc1766A(long ptr long)
@ stdcall LcidToRfc1766W(long ptr long)
@ stub Rfc1766ToLcidA
@ stub Rfc1766ToLcidW
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment