advpack: Implement FileSaveMarkNotExistW.
This commit is contained in:
parent
cfbc26f3e6
commit
bed3d4d3eb
|
@ -20,7 +20,7 @@
|
|||
# stdcall ExtractFilesW(wstr wstr long ptr ptr long)
|
||||
@ stdcall ExtractFiles(str str long ptr ptr long) ExtractFilesA
|
||||
@ stdcall FileSaveMarkNotExistA(str str str)
|
||||
# stdcall FileSaveMarkNotExistW(wstr wstr wstr)
|
||||
@ stdcall FileSaveMarkNotExistW(wstr wstr wstr)
|
||||
@ stdcall FileSaveMarkNotExist(str str str) FileSaveMarkNotExistA
|
||||
@ stdcall FileSaveRestoreA(ptr str str str long)
|
||||
# stdcall FileSaveRestoreW(ptr wstr wstr wstr long)
|
||||
|
|
|
@ -724,6 +724,18 @@ done:
|
|||
/***********************************************************************
|
||||
* FileSaveMarkNotExistA (ADVPACK.@)
|
||||
*
|
||||
* See FileSaveMarkNotExistW.
|
||||
*/
|
||||
HRESULT WINAPI FileSaveMarkNotExistA(LPSTR pszFileList, LPSTR pszDir, LPSTR pszBaseName)
|
||||
{
|
||||
TRACE("(%p, %p, %p)\n", pszFileList, pszDir, pszBaseName);
|
||||
|
||||
return AddDelBackupEntryA(pszFileList, pszDir, pszBaseName, AADBE_DEL_ENTRY);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* FileSaveMarkNotExistW (ADVPACK.@)
|
||||
*
|
||||
* Marks the files in the file list as not existing so they won't be
|
||||
* backed up during a save.
|
||||
*
|
||||
|
@ -736,11 +748,11 @@ done:
|
|||
* Success: S_OK.
|
||||
* Failure: E_FAIL.
|
||||
*/
|
||||
HRESULT WINAPI FileSaveMarkNotExistA(LPSTR pszFileList, LPSTR pszDir, LPSTR pszBaseName)
|
||||
HRESULT WINAPI FileSaveMarkNotExistW(LPWSTR pszFileList, LPWSTR pszDir, LPWSTR pszBaseName)
|
||||
{
|
||||
TRACE("(%p, %p, %p)\n", pszFileList, pszDir, pszBaseName);
|
||||
|
||||
return AddDelBackupEntryA(pszFileList, pszDir, pszBaseName, AADBE_DEL_ENTRY);
|
||||
return AddDelBackupEntryW(pszFileList, pszDir, pszBaseName, AADBE_DEL_ENTRY);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
|
|
Loading…
Reference in New Issue