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
74fe2989
Commit
74fe2989
authored
Jun 20, 2012
by
Damjan Jovanovic
Committed by
Alexandre Julliard
Jun 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Fix some return types.
parent
24980e0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
brsfolder.c
dlls/shell32/brsfolder.c
+1
-1
control.c
dlls/shell32/control.c
+1
-1
shlfileop.c
dlls/shell32/shlfileop.c
+4
-4
No files found.
dlls/shell32/brsfolder.c
View file @
74fe2989
...
@@ -570,7 +570,7 @@ static HRESULT BrsFolder_Treeview_Changed( browse_info *info, NMTREEVIEWW *pnmtv
...
@@ -570,7 +570,7 @@ static HRESULT BrsFolder_Treeview_Changed( browse_info *info, NMTREEVIEWW *pnmtv
browsefolder_callback
(
info
->
lpBrowseInfo
,
info
->
hWnd
,
BFFM_SELCHANGED
,
browsefolder_callback
(
info
->
lpBrowseInfo
,
info
->
hWnd
,
BFFM_SELCHANGED
,
(
LPARAM
)
info
->
pidlRet
);
(
LPARAM
)
info
->
pidlRet
);
BrsFolder_CheckValidSelection
(
info
,
lptvid
);
BrsFolder_CheckValidSelection
(
info
,
lptvid
);
return
0
;
return
S_OK
;
}
}
static
LRESULT
BrsFolder_Treeview_Rename
(
browse_info
*
info
,
NMTVDISPINFOW
*
pnmtv
)
static
LRESULT
BrsFolder_Treeview_Rename
(
browse_info
*
info
,
NMTVDISPINFOW
*
pnmtv
)
...
...
dlls/shell32/control.c
View file @
74fe2989
...
@@ -849,7 +849,7 @@ void WINAPI Control_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdSh
...
@@ -849,7 +849,7 @@ void WINAPI Control_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdSh
HRESULT
WINAPI
Control_FillCache_RunDLLW
(
HWND
hWnd
,
HANDLE
hModule
,
DWORD
w
,
DWORD
x
)
HRESULT
WINAPI
Control_FillCache_RunDLLW
(
HWND
hWnd
,
HANDLE
hModule
,
DWORD
w
,
DWORD
x
)
{
{
FIXME
(
"%p %p 0x%08x 0x%08x stub
\n
"
,
hWnd
,
hModule
,
w
,
x
);
FIXME
(
"%p %p 0x%08x 0x%08x stub
\n
"
,
hWnd
,
hModule
,
w
,
x
);
return
0
;
return
S_OK
;
}
}
/*************************************************************************
/*************************************************************************
...
...
dlls/shell32/shlfileop.c
View file @
74fe2989
...
@@ -1177,7 +1177,7 @@ static void create_dest_dirs(LPCWSTR szDestDir)
...
@@ -1177,7 +1177,7 @@ static void create_dest_dirs(LPCWSTR szDestDir)
}
}
/* the FO_COPY operation */
/* the FO_COPY operation */
static
HRESULT
copy_files
(
FILE_OPERATION
*
op
,
const
FILE_LIST
*
flFrom
,
FILE_LIST
*
flTo
)
static
DWORD
copy_files
(
FILE_OPERATION
*
op
,
const
FILE_LIST
*
flFrom
,
FILE_LIST
*
flTo
)
{
{
DWORD
i
;
DWORD
i
;
const
FILE_ENTRY
*
entryToCopy
;
const
FILE_ENTRY
*
entryToCopy
;
...
@@ -1325,7 +1325,7 @@ static BOOL confirm_delete_list(HWND hWnd, DWORD fFlags, BOOL fTrash, const FILE
...
@@ -1325,7 +1325,7 @@ static BOOL confirm_delete_list(HWND hWnd, DWORD fFlags, BOOL fTrash, const FILE
}
}
/* the FO_DELETE operation */
/* the FO_DELETE operation */
static
HRESULT
delete_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
)
static
DWORD
delete_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
)
{
{
const
FILE_ENTRY
*
fileEntry
;
const
FILE_ENTRY
*
fileEntry
;
DWORD
i
;
DWORD
i
;
...
@@ -1425,7 +1425,7 @@ static void move_to_dir(LPSHFILEOPSTRUCTW lpFileOp, const FILE_ENTRY *feFrom, co
...
@@ -1425,7 +1425,7 @@ static void move_to_dir(LPSHFILEOPSTRUCTW lpFileOp, const FILE_ENTRY *feFrom, co
}
}
/* the FO_MOVE operation */
/* the FO_MOVE operation */
static
HRESULT
move_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
static
DWORD
move_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
{
{
DWORD
i
;
DWORD
i
;
const
FILE_ENTRY
*
entryToMove
;
const
FILE_ENTRY
*
entryToMove
;
...
@@ -1477,7 +1477,7 @@ static HRESULT move_files(LPSHFILEOPSTRUCTW lpFileOp, const FILE_LIST *flFrom, c
...
@@ -1477,7 +1477,7 @@ static HRESULT move_files(LPSHFILEOPSTRUCTW lpFileOp, const FILE_LIST *flFrom, c
}
}
/* the FO_RENAME files */
/* the FO_RENAME files */
static
HRESULT
rename_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
static
DWORD
rename_files
(
LPSHFILEOPSTRUCTW
lpFileOp
,
const
FILE_LIST
*
flFrom
,
const
FILE_LIST
*
flTo
)
{
{
const
FILE_ENTRY
*
feFrom
;
const
FILE_ENTRY
*
feFrom
;
const
FILE_ENTRY
*
feTo
;
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