Commit a19efb7a authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

msctf: Semi-stub implementation of ITfInputProcessorProfiles::GetLanguageList.

parent 3fff6ec8
......@@ -422,8 +422,11 @@ static HRESULT WINAPI InputProcessorProfiles_GetLanguageList(
ITfInputProcessorProfiles *iface, LANGID **ppLangId, ULONG *pulCount)
{
InputProcessorProfiles *This = (InputProcessorProfiles*)iface;
FIXME("STUB:(%p)\n",This);
return E_NOTIMPL;
FIXME("Semi-STUB:(%p)\n",This);
*ppLangId = CoTaskMemAlloc(sizeof(LANGID));
**ppLangId = This->currentLanguage;
*pulCount = 1;
return S_OK;
}
static HRESULT WINAPI InputProcessorProfiles_EnumLanguageProfiles(
......
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