mstask: Implemented PersistFile_Save stub.

This commit is contained in:
Roy Shea 2008-08-22 12:55:22 -07:00 committed by Alexandre Julliard
parent e110f2c680
commit 2172120fae
1 changed files with 3 additions and 1 deletions

View File

@ -652,7 +652,9 @@ static HRESULT WINAPI MSTASK_IPersistFile_Save(
BOOL fRemember)
{
FIXME("(%p, %p, %d): stub\n", iface, pszFileName, fRemember);
return E_NOTIMPL;
WARN("Returning S_OK but not writing to disk: %s %d\n",
debugstr_w(pszFileName), fRemember);
return S_OK;
}
static HRESULT WINAPI MSTASK_IPersistFile_SaveCompleted(