Commit 8818880b authored by Troy Rollo's avatar Troy Rollo Committed by Alexandre Julliard

user: Fix argument type of IsDlgButtonChecked.

parent d07448dd
......@@ -1344,7 +1344,7 @@ BOOL WINAPI CheckDlgButton( HWND hwnd, INT id, UINT check )
/***********************************************************************
* 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 );
}
......
......@@ -4482,7 +4482,7 @@ BOOL WINAPI IsClipboardFormatAvailable(UINT);
BOOL WINAPI IsDialogMessageA(HWND,LPMSG);
BOOL WINAPI IsDialogMessageW(HWND,LPMSG);
#define IsDialogMessage WINELIB_NAME_AW(IsDialogMessage)
UINT WINAPI IsDlgButtonChecked(HWND,UINT);
UINT WINAPI IsDlgButtonChecked(HWND,int);
BOOL WINAPI IsHungAppWindow(HWND);
BOOL WINAPI IsIconic(HWND);
BOOL WINAPI IsMenu(HMENU);
......
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