user: Fix argument types for CheckRadioButton.

This commit is contained in:
Troy Rollo 2006-02-14 11:37:20 +01:00 committed by Alexandre Julliard
parent 99020f8001
commit 0fbd861bdd
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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);