Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
bed3d4d3
Commit
bed3d4d3
authored
Mar 22, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Mar 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Implement FileSaveMarkNotExistW.
parent
cfbc26f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
advpack.spec
dlls/advpack/advpack.spec
+1
-1
files.c
dlls/advpack/files.c
+14
-2
No files found.
dlls/advpack/advpack.spec
View file @
bed3d4d3
...
...
@@ -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)
...
...
dlls/advpack/files.c
View file @
bed3d4d3
...
...
@@ -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
FileSaveMarkNotExist
A
(
LPSTR
pszFileList
,
LPSTR
pszDir
,
LP
STR
pszBaseName
)
HRESULT
WINAPI
FileSaveMarkNotExist
W
(
LPWSTR
pszFileList
,
LPWSTR
pszDir
,
LPW
STR
pszBaseName
)
{
TRACE
(
"(%p, %p, %p)
\n
"
,
pszFileList
,
pszDir
,
pszBaseName
);
return
AddDelBackupEntry
A
(
pszFileList
,
pszDir
,
pszBaseName
,
AADBE_DEL_ENTRY
);
return
AddDelBackupEntry
W
(
pszFileList
,
pszDir
,
pszBaseName
,
AADBE_DEL_ENTRY
);
}
/***********************************************************************
...
...
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