Commit 0fbd861b authored by Troy Rollo's avatar Troy Rollo Committed by Alexandre Julliard

user: Fix argument types for CheckRadioButton.

parent 99020f80
......@@ -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;
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment