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
0fbd861b
Commit
0fbd861b
authored
Feb 14, 2006
by
Troy Rollo
Committed by
Alexandre Julliard
Feb 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Fix argument types for CheckRadioButton.
parent
99020f80
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dialog.c
dlls/user/dialog.c
+2
-2
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user/dialog.c
View file @
0fbd861b
...
...
@@ -1381,8 +1381,8 @@ static BOOL CALLBACK CheckRB(HWND hwndChild, LPARAM lParam)
/***********************************************************************
* CheckRadioButton (USER32.@)
*/
BOOL
WINAPI
CheckRadioButton
(
HWND
hwndDlg
,
UINT
firstID
,
UINT
lastID
,
UINT
checkID
)
BOOL
WINAPI
CheckRadioButton
(
HWND
hwndDlg
,
int
firstID
,
int
lastID
,
int
checkID
)
{
RADIOGROUP
radioGroup
;
...
...
include/winuser.h
View file @
0fbd861b
...
...
@@ -4141,7 +4141,7 @@ BOOL WINAPI CharToOemBuffW(LPCWSTR,LPSTR,DWORD);
BOOL
WINAPI
CheckDlgButton
(
HWND
,
INT
,
UINT
);
DWORD
WINAPI
CheckMenuItem
(
HMENU
,
UINT
,
UINT
);
BOOL
WINAPI
CheckMenuRadioItem
(
HMENU
,
UINT
,
UINT
,
UINT
,
UINT
);
BOOL
WINAPI
CheckRadioButton
(
HWND
,
UINT
,
UINT
,
UINT
);
BOOL
WINAPI
CheckRadioButton
(
HWND
,
int
,
int
,
int
);
HWND
WINAPI
ChildWindowFromPoint
(
HWND
,
POINT
);
HWND
WINAPI
ChildWindowFromPointEx
(
HWND
,
POINT
,
UINT
);
BOOL
WINAPI
ClientToScreen
(
HWND
,
LPPOINT
);
...
...
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