Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9e9fe397
Commit
9e9fe397
authored
Jan 14, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Jan 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Add a stub for AddDelBackupEntry.
parent
cfe45cc1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletion
+35
-1
advpack.spec
dlls/advpack/advpack.spec
+1
-1
files.c
dlls/advpack/files.c
+28
-0
advpub.h
include/advpub.h
+6
-0
No files found.
dlls/advpack/advpack.spec
View file @
9e9fe397
@ st
ub AddDelBackupEntry
@ st
dcall AddDelBackupEntry(str str str long)
@ stdcall AdvInstallFile(long str str str str long long)
@ stub CloseINFEngine
@ stdcall DelNode(str long)
...
...
dlls/advpack/files.c
View file @
9e9fe397
...
...
@@ -31,6 +31,34 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
advpack
);
/***********************************************************************
* AddDelBackupEntry (ADVPACK.@)
*
* Either marks the file in the file list as not existing during file
* save, or deletes the file entry from the INI.
*
* PARAMS
* lpcszFileList [I] NULL-separated list of filenames.
* lpcszBackupDir [I] Path of the backup directory.
* lpcszBaseName [I] Basename of the backup files.
* dwFlags [I] See advpub.h.
*
* RETURNS
* Success: S_OK.
* Failure: E_FAIL.
*
* BUGS
* Unimplemented.
*/
HRESULT
WINAPI
AddDelBackupEntry
(
LPCSTR
lpcszFileList
,
LPCSTR
lpcszBackupDir
,
LPCSTR
lpcszBaseName
,
DWORD
dwFlags
)
{
FIXME
(
"(%p, %p, %p, %ld) stub
\n
"
,
lpcszFileList
,
lpcszBackupDir
,
lpcszBaseName
,
dwFlags
);
return
E_FAIL
;
}
/* FIXME: this is only for the local case, X:\ */
#define ROOT_LENGTH 3
...
...
include/advpub.h
View file @
9e9fe397
...
...
@@ -46,6 +46,10 @@ typedef struct _StrTable {
typedef
const
STRTABLE
CSTRTABLE
;
typedef
CSTRTABLE
*
LPCSTRTABLE
;
/* Flags for AddDelBackupEntry */
#define AADBE_ADD_ENTRY 0x01
#define AADBE_DEL_ENTRY 0x02
/* Flags for AdvInstallFile */
#define AIF_WARNIFSKIP 0x00000001
#define AIF_NOSKIP 0x00000002
...
...
@@ -96,6 +100,8 @@ typedef CSTRTABLE *LPCSTRTABLE;
#define AFSR_USEREFCNT IE4_USEREFCNT
#define AFSR_EXTRAINCREFCNT IE4_EXTRAINCREFCNT
HRESULT
WINAPI
AddDelBackupEntry
(
LPCSTR
lpcszFileList
,
LPCSTR
lpcszBackupDir
,
LPCSTR
lpcszBaseName
,
DWORD
dwFlags
);
HRESULT
WINAPI
AdvInstallFile
(
HWND
hwnd
,
LPCSTR
lpszSourceDir
,
LPCSTR
lpszSourceFile
,
LPCSTR
lpszDestDir
,
LPCSTR
lpszDestFile
,
DWORD
dwFlags
,
DWORD
dwReserved
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment