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
637bcd5d
Commit
637bcd5d
authored
Aug 31, 2015
by
Zhenbo Li
Committed by
Alexandre Julliard
Sep 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix return type for helper functions of SHFileOption.
parent
0fcfb8a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
shlfileop.c
dlls/shell32/shlfileop.c
+6
-5
No files found.
dlls/shell32/shlfileop.c
View file @
637bcd5d
...
...
@@ -1180,7 +1180,7 @@ static void create_dest_dirs(LPCWSTR szDestDir)
}
/* the FO_COPY operation */
static
DWORD
copy_files
(
FILE_OPERATION
*
op
,
const
FILE_LIST
*
flFrom
,
FILE_LIST
*
flTo
)
static
int
copy_files
(
FILE_OPERATION
*
op
,
const
FILE_LIST
*
flFrom
,
FILE_LIST
*
flTo
)
{
DWORD
i
;
const
FILE_ENTRY
*
entryToCopy
;
...
...
@@ -1328,10 +1328,11 @@ static BOOL confirm_delete_list(HWND hWnd, DWORD fFlags, BOOL fTrash, const FILE
}
/* the FO_DELETE operation */
static
DWORD
delete_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
)
static
int
delete_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
)
{
const
FILE_ENTRY
*
fileEntry
;
DWORD
i
,
ret
;
DWORD
i
;
int
ret
;
BOOL
bTrash
;
if
(
!
flFrom
->
dwNumFiles
)
...
...
@@ -1399,7 +1400,7 @@ static void move_to_dir(LPSHFILEOPSTRUCTW lpFileOp, const FILE_ENTRY *feFrom, co
}
/* the FO_MOVE operation */
static
DWORD
move_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
static
int
move_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
{
DWORD
i
;
INT
mismatched
=
0
;
...
...
@@ -1470,7 +1471,7 @@ static DWORD move_files(LPSHFILEOPSTRUCTW lpFileOp, const FILE_LIST *flFrom, con
}
/* the FO_RENAME files */
static
DWORD
rename_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
static
int
rename_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
{
const
FILE_ENTRY
*
feFrom
;
const
FILE_ENTRY
*
feTo
;
...
...
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