msctf: Implement ThreadMgr ITfSource::UnadviseSink.

This commit is contained in:
Aric Stewart 2009-03-25 14:35:37 -05:00 committed by Alexandre Julliard
parent 0e5dac618f
commit 91e2f61cda
1 changed files with 7 additions and 2 deletions

View File

@ -372,9 +372,14 @@ static WINAPI HRESULT ThreadMgrSource_AdviseSink(ITfSource *iface,
static WINAPI HRESULT ThreadMgrSource_UnadviseSink(ITfSource *iface, DWORD pdwCookie)
{
ThreadMgrSink *sink = (ThreadMgrSink*)pdwCookie;
ThreadMgr *This = impl_from_ITfSourceVtbl(iface);
FIXME("STUB:(%p)\n",This);
return E_NOTIMPL;
TRACE("(%p) %x\n",This,pdwCookie);
list_remove(&sink->entry);
free_sink(sink);
return S_OK;
}
static const ITfSourceVtbl ThreadMgr_SourceVtbl =