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
36e195a1
Commit
36e195a1
authored
Nov 25, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Remove WINAPI/CALLBACK on static functions where not needed.
parent
66063ae4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
pidl.c
dlls/shell32/pidl.c
+1
-1
shlfileop.c
dlls/shell32/shlfileop.c
+2
-2
No files found.
dlls/shell32/pidl.c
View file @
36e195a1
...
@@ -985,7 +985,7 @@ LPITEMIDLIST WINAPI ILCreateFromPathAW (LPCVOID path)
...
@@ -985,7 +985,7 @@ LPITEMIDLIST WINAPI ILCreateFromPathAW (LPCVOID path)
* is used to avoid having to verify the current path element on disk, so
* is used to avoid having to verify the current path element on disk, so
* that creating an ItemIDList from a nonexistent path still can work.
* that creating an ItemIDList from a nonexistent path still can work.
*/
*/
static
HRESULT
WINAPI
_ILParsePathW
(
LPCWSTR
path
,
LPWIN32_FIND_DATAW
lpFindFile
,
static
HRESULT
_ILParsePathW
(
LPCWSTR
path
,
LPWIN32_FIND_DATAW
lpFindFile
,
BOOL
bBindCtx
,
LPITEMIDLIST
*
ppidl
,
LPDWORD
prgfInOut
)
BOOL
bBindCtx
,
LPITEMIDLIST
*
ppidl
,
LPDWORD
prgfInOut
)
{
{
LPSHELLFOLDER
pSF
=
NULL
;
LPSHELLFOLDER
pSF
=
NULL
;
...
...
dlls/shell32/shlfileop.c
View file @
36e195a1
...
@@ -112,7 +112,7 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset,
...
@@ -112,7 +112,7 @@ static void confirm_msg_move_button(HWND hDlg, INT iId, INT *xPos, INT yOffset,
/* Note: we paint the text manually and don't use the static control to make
/* Note: we paint the text manually and don't use the static control to make
* sure the text has the same height as the one computed in WM_INITDIALOG
* sure the text has the same height as the one computed in WM_INITDIALOG
*/
*/
static
INT_PTR
C
ALLBACK
C
onfirmMsgBox_Paint
(
HWND
hDlg
)
static
INT_PTR
ConfirmMsgBox_Paint
(
HWND
hDlg
)
{
{
PAINTSTRUCT
ps
;
PAINTSTRUCT
ps
;
HFONT
hOldFont
;
HFONT
hOldFont
;
...
@@ -132,7 +132,7 @@ static INT_PTR CALLBACK ConfirmMsgBox_Paint(HWND hDlg)
...
@@ -132,7 +132,7 @@ static INT_PTR CALLBACK ConfirmMsgBox_Paint(HWND hDlg)
return
TRUE
;
return
TRUE
;
}
}
static
INT_PTR
C
ALLBACK
C
onfirmMsgBox_Init
(
HWND
hDlg
,
LPARAM
lParam
)
static
INT_PTR
ConfirmMsgBox_Init
(
HWND
hDlg
,
LPARAM
lParam
)
{
{
struct
confirm_msg_info
*
info
=
(
struct
confirm_msg_info
*
)
lParam
;
struct
confirm_msg_info
*
info
=
(
struct
confirm_msg_info
*
)
lParam
;
INT
xPos
,
yOffset
;
INT
xPos
,
yOffset
;
...
...
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