advpack: Forward FileSaveMarkNotExist to AddDelBackupEntry.

This commit is contained in:
James Hawkins 2006-01-21 19:19:41 +01:00 committed by Alexandre Julliard
parent 0584b9de80
commit c664353452
1 changed files with 2 additions and 5 deletions

View File

@ -599,15 +599,12 @@ done:
* RETURNS
* Success: S_OK.
* Failure: E_FAIL.
*
* BUGS
* Unimplemented.
*/
HRESULT WINAPI FileSaveMarkNotExist(LPSTR pszFileList, LPSTR pszDir, LPSTR pszBaseName)
{
FIXME("(%p, %p, %p) stub\n", pszFileList, pszDir, pszBaseName);
TRACE("(%p, %p, %p)\n", pszFileList, pszDir, pszBaseName);
return E_FAIL;
return AddDelBackupEntry(pszFileList, pszDir, pszBaseName, AADBE_DEL_ENTRY);
}
/***********************************************************************