comsvcs: Add GetTimeOfLastChange() for "new" moniker.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Nikolay Sivov 2019-11-05 13:09:27 +03:00 committed by Alexandre Julliard
parent cce9a5f124
commit 2ede7a5a74
2 changed files with 2 additions and 3 deletions

View File

@ -577,9 +577,9 @@ static HRESULT WINAPI new_moniker_IsRunning(IMoniker* iface, IBindCtx *pbc, IMon
static HRESULT WINAPI new_moniker_GetTimeOfLastChange(IMoniker *iface, IBindCtx *pbc, IMoniker *pmkToLeft,
FILETIME *itemtime)
{
FIXME("%p, %p, %p, %p.\n", iface, pbc, pmkToLeft, itemtime);
TRACE("%p, %p, %p, %p.\n", iface, pbc, pmkToLeft, itemtime);
return E_NOTIMPL;
return MK_E_UNAVAILABLE;
}
static HRESULT WINAPI new_moniker_Inverse(IMoniker *iface, IMoniker **inverse)

View File

@ -344,7 +344,6 @@ todo_wine
ok(hr == S_FALSE, "Unexpected hr %#x.\n", hr);
hr = IMoniker_GetTimeOfLastChange(moniker, bindctx, NULL, &filetime);
todo_wine
ok(hr == MK_E_UNAVAILABLE, "Unexpected hr %#x.\n", hr);
hr = IMoniker_BindToObject(moniker, bindctx, NULL, &IID_IUnknown, (void **)&obj);