Commit cac3bf84 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

advpack: Fix the documentation for AddDelBackupEntry.

parent bf1a56ef
...@@ -35,19 +35,28 @@ WINE_DEFAULT_DEBUG_CHANNEL(advpack); ...@@ -35,19 +35,28 @@ WINE_DEFAULT_DEBUG_CHANNEL(advpack);
/*********************************************************************** /***********************************************************************
* AddDelBackupEntry (ADVPACK.@) * AddDelBackupEntry (ADVPACK.@)
* *
* Either marks the file in the file list as not existing during file * Either appends the files in the file list to the backup section of
* save, or deletes the file entry from the INI. * the specified INI, or deletes the entries from the INI file.
* *
* PARAMS * PARAMS
* lpcszFileList [I] NULL-separated list of filenames. * lpcszFileList [I] NULL-separated list of filenames.
* lpcszBackupDir [I] Path of the backup directory. * lpcszBackupDir [I] Path of the backup directory.
* lpcszBaseName [I] Basename of the backup files. * lpcszBaseName [I] Basename of the INI file.
* dwFlags [I] See advpub.h. * dwFlags [I] AADBE_ADD_ENTRY adds the entries in the file list
* to the INI file, while AADBE_DEL_ENTRY removes
* the entries from the INI file.
* *
* RETURNS * RETURNS
* Success: S_OK. * Success: S_OK.
* Failure: E_FAIL. * Failure: E_FAIL.
* *
* NOTES
* If the INI file does not exist before adding entries to it, the file
* will be created.
*
* If lpcszBackupDir is NULL, the INI file is assumed to exist in
* c:\windows or created there if it does not exist.
*
* BUGS * BUGS
* Unimplemented. * Unimplemented.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment