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.@)
|
* CheckRadioButton (USER32.@)
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI CheckRadioButton( HWND hwndDlg, UINT firstID,
|
BOOL WINAPI CheckRadioButton( HWND hwndDlg, int firstID,
|
||||||
UINT lastID, UINT checkID )
|
int lastID, int checkID )
|
||||||
{
|
{
|
||||||
RADIOGROUP radioGroup;
|
RADIOGROUP radioGroup;
|
||||||
|
|
||||||
|
|
|
@ -4141,7 +4141,7 @@ BOOL WINAPI CharToOemBuffW(LPCWSTR,LPSTR,DWORD);
|
||||||
BOOL WINAPI CheckDlgButton(HWND,INT,UINT);
|
BOOL WINAPI CheckDlgButton(HWND,INT,UINT);
|
||||||
DWORD WINAPI CheckMenuItem(HMENU,UINT,UINT);
|
DWORD WINAPI CheckMenuItem(HMENU,UINT,UINT);
|
||||||
BOOL WINAPI CheckMenuRadioItem(HMENU,UINT,UINT,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 ChildWindowFromPoint(HWND,POINT);
|
||||||
HWND WINAPI ChildWindowFromPointEx(HWND,POINT,UINT);
|
HWND WINAPI ChildWindowFromPointEx(HWND,POINT,UINT);
|
||||||
BOOL WINAPI ClientToScreen(HWND,LPPOINT);
|
BOOL WINAPI ClientToScreen(HWND,LPPOINT);
|
||||||
|
|
Loading…
Reference in New Issue