mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msctf: Implement ITfRange::GetContext.
This commit is contained in:
parent
d0ef9886c3
commit
bdd4e0b48b
1 changed files with 5 additions and 2 deletions
|
@ -271,8 +271,11 @@ static HRESULT WINAPI Range_Clone(ITfRange *iface, ITfRange **ppClone)
|
|||
static HRESULT WINAPI Range_GetContext(ITfRange *iface, ITfContext **ppContext)
|
||||
{
|
||||
Range *This = (Range *)iface;
|
||||
FIXME("STUB:(%p)\n",This);
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)\n",This);
|
||||
if (!ppContext)
|
||||
return E_INVALIDARG;
|
||||
*ppContext = This->pITfContext;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static const ITfRangeVtbl Range_RangeVtbl =
|
||||
|
|
Loading…
Reference in a new issue