msctf: Stub implementation of SetInputScopes.
This commit is contained in:
parent
b7a47e7223
commit
096643dfa6
|
@ -233,3 +233,20 @@ HRESULT WINAPI SetInputScope(HWND hwnd, INT inputscope)
|
||||||
FIXME("STUB: %p %i\n",hwnd,inputscope);
|
FIXME("STUB: %p %i\n",hwnd,inputscope);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetInputScopes(MSCTF.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI SetInputScopes(HWND hwnd, const INT *pInputScopes,
|
||||||
|
UINT cInputScopes, WCHAR **ppszPhraseList,
|
||||||
|
UINT cPhrases, WCHAR *pszRegExp, WCHAR *pszSRGS)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
FIXME("STUB: %p ... %s %s\n",hwnd, debugstr_w(pszRegExp), debugstr_w(pszSRGS));
|
||||||
|
for (i = 0; i < cInputScopes; i++)
|
||||||
|
TRACE("\tScope[%i] = %i\n",i,pInputScopes[i]);
|
||||||
|
for (i = 0; i < cPhrases; i++)
|
||||||
|
TRACE("\tPhrase[%i] = %s\n",i,debugstr_w(ppszPhraseList[i]));
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
@ stdcall -private DllUnregisterServer()
|
@ stdcall -private DllUnregisterServer()
|
||||||
@ stdcall SetInputScope(long long)
|
@ stdcall SetInputScope(long long)
|
||||||
@ stub SetInputScopeXML
|
@ stub SetInputScopeXML
|
||||||
@ stub SetInputScopes
|
@ stdcall SetInputScopes(long ptr long ptr long wstr wstr)
|
||||||
@ stub TF_CUASAppFix
|
@ stub TF_CUASAppFix
|
||||||
@ stub TF_CheckThreadInputIdle
|
@ stub TF_CheckThreadInputIdle
|
||||||
@ stub TF_ClearLangBarAddIns
|
@ stub TF_ClearLangBarAddIns
|
||||||
|
|
Loading…
Reference in New Issue