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
31df4d42
Commit
31df4d42
authored
Nov 24, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Remove WINAPI/CALLBACK on static functions where not needed.
parent
c0e271c4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
button.c
dlls/user32/button.c
+2
-2
edit.c
dlls/user32/edit.c
+4
-4
listbox.c
dlls/user32/listbox.c
+2
-2
class.c
dlls/user32/tests/class.c
+1
-1
No files found.
dlls/user32/button.c
View file @
31df4d42
...
...
@@ -229,8 +229,8 @@ static void setup_clipping( HWND hwnd, HDC hdc )
/***********************************************************************
* ButtonWndProc_common
*/
static
LRESULT
WINAPI
ButtonWndProc_common
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
static
LRESULT
ButtonWndProc_common
(
HWND
hWnd
,
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
{
RECT
rect
;
POINT
pt
;
...
...
dlls/user32/edit.c
View file @
31df4d42
...
...
@@ -223,7 +223,7 @@ static void EDIT_AdjustFormatRect(EDITSTATE *es);
static
void
EDIT_SetRectNP
(
EDITSTATE
*
es
,
const
RECT
*
lprc
);
static
void
EDIT_UnlockBuffer
(
EDITSTATE
*
es
,
BOOL
force
);
static
void
EDIT_UpdateScrollInfo
(
EDITSTATE
*
es
);
static
INT
CALLBACK
EDIT_WordBreakProc
(
LPWSTR
s
,
INT
index
,
INT
count
,
INT
action
);
static
INT
EDIT_WordBreakProc
(
LPWSTR
s
,
INT
index
,
INT
count
,
INT
action
);
/*
* EM_XXX message handlers
*/
...
...
@@ -449,8 +449,8 @@ static inline INT get_vertical_line_count(EDITSTATE *es)
* names).
*
*/
static
LRESULT
WINAPI
EditWndProc_common
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
static
LRESULT
EditWndProc_common
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
{
EDITSTATE
*
es
=
(
EDITSTATE
*
)
GetWindowLongPtrW
(
hwnd
,
0
);
LRESULT
result
=
0
;
...
...
@@ -2602,7 +2602,7 @@ static void EDIT_UpdateScrollInfo(EDITSTATE *es)
* internally, so we can decide this for ourselves.
*
*/
static
INT
CALLBACK
EDIT_WordBreakProc
(
LPWSTR
s
,
INT
index
,
INT
count
,
INT
action
)
static
INT
EDIT_WordBreakProc
(
LPWSTR
s
,
INT
index
,
INT
count
,
INT
action
)
{
INT
ret
=
0
;
...
...
dlls/user32/listbox.c
View file @
31df4d42
...
...
@@ -2606,8 +2606,8 @@ static BOOL LISTBOX_Destroy( LB_DESCR *descr )
/***********************************************************************
* ListBoxWndProc_common
*/
static
LRESULT
WINAPI
ListBoxWndProc_common
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
static
LRESULT
ListBoxWndProc_common
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
,
BOOL
unicode
)
{
LB_DESCR
*
descr
=
(
LB_DESCR
*
)
GetWindowLongPtrW
(
hwnd
,
0
);
LPHEADCOMBO
lphc
=
0
;
...
...
dlls/user32/tests/class.c
View file @
31df4d42
...
...
@@ -814,7 +814,7 @@ static BOOL RegisterTestDialog(HINSTANCE hInstance)
/* test registering a dialog box created by using the CLASS directive in a
resource file, then test creating the dialog using CreateDialogParam. */
static
void
WINAPI
CreateDialogParamTest
(
HINSTANCE
hInstance
)
static
void
CreateDialogParamTest
(
HINSTANCE
hInstance
)
{
HWND
hWndMain
;
...
...
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