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
cd073a66
Commit
cd073a66
authored
Oct 11, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Oct 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Make internal functions static.
parent
c9384a20
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
listview.c
dlls/comctl32/listview.c
+2
-2
propsheet.c
dlls/comctl32/propsheet.c
+1
-1
No files found.
dlls/comctl32/listview.c
View file @
cd073a66
...
...
@@ -9921,7 +9921,7 @@ static LRESULT EditLblWndProcT(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPara
*
* RETURN:
*/
LRESULT
CALLBACK
EditLblWndProcW
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
EditLblWndProcW
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
EditLblWndProcT
(
hwnd
,
uMsg
,
wParam
,
lParam
,
TRUE
);
}
...
...
@@ -9938,7 +9938,7 @@ LRESULT CALLBACK EditLblWndProcW(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPa
*
* RETURN:
*/
LRESULT
CALLBACK
EditLblWndProcA
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
static
LRESULT
CALLBACK
EditLblWndProcA
(
HWND
hwnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
EditLblWndProcT
(
hwnd
,
uMsg
,
wParam
,
lParam
,
FALSE
);
}
...
...
dlls/comctl32/propsheet.c
View file @
cd073a66
...
...
@@ -602,7 +602,7 @@ static BOOL PROPSHEET_CollectPageInfo(LPCPROPSHEETPAGEW lppsp,
*
* Creates the actual property sheet.
*/
INT_PTR
PROPSHEET_CreateDialog
(
PropSheetInfo
*
psInfo
)
static
INT_PTR
PROPSHEET_CreateDialog
(
PropSheetInfo
*
psInfo
)
{
LRESULT
ret
;
LPCVOID
template
;
...
...
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