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

This commit is contained in:
Aric Stewart 2009-06-25 17:00:45 +09:00 committed by Alexandre Julliard
parent 3fff6ec879
commit a19efb7ad9

View file

@ -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(