user: Fix argument type of IsDlgButtonChecked.

This commit is contained in:
Troy Rollo 2006-02-14 11:38:15 +01:00 committed by Alexandre Julliard
parent d07448dd3a
commit 8818880b43
2 changed files with 2 additions and 2 deletions

View File

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

View File

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