user: Fix argument type of IsDlgButtonChecked.
This commit is contained in:
parent
d07448dd3a
commit
8818880b43
@ -1344,7 +1344,7 @@ BOOL WINAPI CheckDlgButton( HWND hwnd, INT id, UINT check )
|
|||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* IsDlgButtonChecked (USER32.@)
|
* IsDlgButtonChecked (USER32.@)
|
||||||
*/
|
*/
|
||||||
UINT WINAPI IsDlgButtonChecked( HWND hwnd, UINT id )
|
UINT WINAPI IsDlgButtonChecked( HWND hwnd, int id )
|
||||||
{
|
{
|
||||||
return (UINT)SendDlgItemMessageW( hwnd, id, BM_GETCHECK, 0, 0 );
|
return (UINT)SendDlgItemMessageW( hwnd, id, BM_GETCHECK, 0, 0 );
|
||||||
}
|
}
|
||||||
|
@ -4482,7 +4482,7 @@ BOOL WINAPI IsClipboardFormatAvailable(UINT);
|
|||||||
BOOL WINAPI IsDialogMessageA(HWND,LPMSG);
|
BOOL WINAPI IsDialogMessageA(HWND,LPMSG);
|
||||||
BOOL WINAPI IsDialogMessageW(HWND,LPMSG);
|
BOOL WINAPI IsDialogMessageW(HWND,LPMSG);
|
||||||
#define IsDialogMessage WINELIB_NAME_AW(IsDialogMessage)
|
#define IsDialogMessage WINELIB_NAME_AW(IsDialogMessage)
|
||||||
UINT WINAPI IsDlgButtonChecked(HWND,UINT);
|
UINT WINAPI IsDlgButtonChecked(HWND,int);
|
||||||
BOOL WINAPI IsHungAppWindow(HWND);
|
BOOL WINAPI IsHungAppWindow(HWND);
|
||||||
BOOL WINAPI IsIconic(HWND);
|
BOOL WINAPI IsIconic(HWND);
|
||||||
BOOL WINAPI IsMenu(HMENU);
|
BOOL WINAPI IsMenu(HMENU);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user