msctf: Implement ITfDocumentMgr::GetBase.

This commit is contained in:
Aric Stewart 2009-02-02 10:25:30 -06:00 committed by Alexandre Julliard
parent 130303bcea
commit e1014b3ea4
1 changed files with 10 additions and 2 deletions

View File

@ -172,8 +172,16 @@ static HRESULT WINAPI DocumentMgr_GetTop(ITfDocumentMgr *iface, ITfContext **ppi
static HRESULT WINAPI DocumentMgr_GetBase(ITfDocumentMgr *iface, ITfContext **ppic)
{
DocumentMgr *This = (DocumentMgr *)iface;
FIXME("STUB:(%p)\n",This);
return E_NOTIMPL;
TRACE("(%p)\n",This);
if (!ppic)
return E_INVALIDARG;
if (This->contextStack[1])
ITfContext_AddRef(This->contextStack[1]);
*ppic = This->contextStack[1];
return S_OK;
}
static HRESULT WINAPI DocumentMgr_EnumContexts(ITfDocumentMgr *iface, IEnumTfContexts **ppEnum)