msctf: Implement TF_CreateInputProcessorProfiles.
This commit is contained in:
parent
04b9f0251c
commit
fac0d945e4
|
@ -600,3 +600,12 @@ HRESULT WINAPI SetInputScopes(HWND hwnd, const INT *pInputScopes,
|
|||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* TF_CreateInputProcessorProfiles(MSCTF.@)
|
||||
*/
|
||||
HRESULT WINAPI TF_CreateInputProcessorProfiles(
|
||||
ITfInputProcessorProfiles **ppipr)
|
||||
{
|
||||
return InputProcessorProfiles_Constructor(NULL,(IUnknown**)ppipr);
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
@ stub TF_CreateCategoryMgr
|
||||
@ stub TF_CreateCicLoadMutex
|
||||
@ stub TF_CreateDisplayAttributeMgr
|
||||
@ stub TF_CreateInputProcessorProfiles
|
||||
@ stdcall TF_CreateInputProcessorProfiles(ptr)
|
||||
@ stub TF_CreateLangBarItemMgr
|
||||
@ stub TF_CreateLangBarMgr
|
||||
@ stdcall TF_CreateThreadMgr(ptr)
|
||||
|
|
|
@ -31,6 +31,7 @@ cpp_quote("#define TF_E_NOLOCK MAKE_HRESULT(SEVERITY_ERROR, FACILITY_IT
|
|||
|
||||
cpp_quote("HRESULT WINAPI TF_CreateThreadMgr(ITfThreadMgr **pptim);")
|
||||
cpp_quote("HRESULT WINAPI TF_GetThreadMgr(ITfThreadMgr **pptim);")
|
||||
cpp_quote("HRESULT WINAPI TF_CreateInputProcessorProfiles(ITfInputProcessorProfiles **ppipr);")
|
||||
|
||||
cpp_quote("EXTERN_C const CLSID CLSID_TF_ThreadMgr;")
|
||||
cpp_quote("EXTERN_C const CLSID CLSID_TF_InputProcessorProfiles;")
|
||||
|
|
Loading…
Reference in New Issue