dmscript: Script track IPersistStream IsDirty return S_FALSE.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
070cfc358c
commit
e437e48254
|
@ -277,7 +277,7 @@ static HRESULT WINAPI IPersistStreamImpl_GetClassID(IPersistStream *iface, CLSID
|
||||||
|
|
||||||
static HRESULT WINAPI IPersistStreamImpl_IsDirty(IPersistStream *iface)
|
static HRESULT WINAPI IPersistStreamImpl_IsDirty(IPersistStream *iface)
|
||||||
{
|
{
|
||||||
return E_NOTIMPL;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI IPersistStreamImpl_Load(IPersistStream *iface, IStream *pStm)
|
static HRESULT WINAPI IPersistStreamImpl_Load(IPersistStream *iface, IStream *pStm)
|
||||||
|
|
|
@ -227,7 +227,7 @@ static void test_scripttrack(void)
|
||||||
|
|
||||||
/* Unimplemented IPersistStream methods */
|
/* Unimplemented IPersistStream methods */
|
||||||
hr = IPersistStream_IsDirty(ps);
|
hr = IPersistStream_IsDirty(ps);
|
||||||
todo_wine ok(hr == S_FALSE, "IPersistStream_IsDirty failed: %08x\n", hr);
|
ok(hr == S_FALSE, "IPersistStream_IsDirty failed: %08x\n", hr);
|
||||||
hr = IPersistStream_GetSizeMax(ps, &size);
|
hr = IPersistStream_GetSizeMax(ps, &size);
|
||||||
ok(hr == E_NOTIMPL, "IPersistStream_GetSizeMax failed: %08x\n", hr);
|
ok(hr == E_NOTIMPL, "IPersistStream_GetSizeMax failed: %08x\n", hr);
|
||||||
hr = IPersistStream_Save(ps, NULL, TRUE);
|
hr = IPersistStream_Save(ps, NULL, TRUE);
|
||||||
|
|
Loading…
Reference in New Issue