mirror of
https://github.com/reactos/wine.git
synced 2025-02-25 15:33:47 +00:00
msctf: Implement ITfThreadMgr::IsThreadFocus.
This commit is contained in:
parent
8526eee472
commit
2e52edf38d
@ -365,9 +365,12 @@ ITfDocumentMgr *pdimNew, ITfDocumentMgr **ppdimPrev)
|
||||
|
||||
static HRESULT WINAPI ThreadMgr_IsThreadFocus( ITfThreadMgr* iface, BOOL *pfThreadFocus)
|
||||
{
|
||||
HWND focus;
|
||||
ThreadMgr *This = (ThreadMgr *)iface;
|
||||
FIXME("STUB:(%p)\n",This);
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p) %p\n",This,pfThreadFocus);
|
||||
focus = GetFocus();
|
||||
*pfThreadFocus = (focus == NULL);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI ThreadMgr_GetFunctionProvider( ITfThreadMgr* iface, REFCLSID clsid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user