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

msctf: Implement TF_CreateInputProcessorProfiles.

parent 04b9f025
...@@ -600,3 +600,12 @@ HRESULT WINAPI SetInputScopes(HWND hwnd, const INT *pInputScopes, ...@@ -600,3 +600,12 @@ HRESULT WINAPI SetInputScopes(HWND hwnd, const INT *pInputScopes,
return S_OK; return S_OK;
} }
/***********************************************************************
* TF_CreateInputProcessorProfiles(MSCTF.@)
*/
HRESULT WINAPI TF_CreateInputProcessorProfiles(
ITfInputProcessorProfiles **ppipr)
{
return InputProcessorProfiles_Constructor(NULL,(IUnknown**)ppipr);
}
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
@ stub TF_CreateCategoryMgr @ stub TF_CreateCategoryMgr
@ stub TF_CreateCicLoadMutex @ stub TF_CreateCicLoadMutex
@ stub TF_CreateDisplayAttributeMgr @ stub TF_CreateDisplayAttributeMgr
@ stub TF_CreateInputProcessorProfiles @ stdcall TF_CreateInputProcessorProfiles(ptr)
@ stub TF_CreateLangBarItemMgr @ stub TF_CreateLangBarItemMgr
@ stub TF_CreateLangBarMgr @ stub TF_CreateLangBarMgr
@ stdcall TF_CreateThreadMgr(ptr) @ stdcall TF_CreateThreadMgr(ptr)
......
...@@ -31,6 +31,7 @@ cpp_quote("#define TF_E_NOLOCK MAKE_HRESULT(SEVERITY_ERROR, FACILITY_IT ...@@ -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_CreateThreadMgr(ITfThreadMgr **pptim);")
cpp_quote("HRESULT WINAPI TF_GetThreadMgr(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_ThreadMgr;")
cpp_quote("EXTERN_C const CLSID CLSID_TF_InputProcessorProfiles;") cpp_quote("EXTERN_C const CLSID CLSID_TF_InputProcessorProfiles;")
......
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