user: Fix argument types for CheckRadioButton.
This commit is contained in:
parent
99020f8001
commit
0fbd861bdd
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue