In version 5.0 (beta), the following definitions are available for Windows CE (CheckDlgButton and IsDlgButtonChecked are not real exported functions like on desktop Windows):
__inline UINT WINAPI IsDlgButtonChecked(HWND hDlg, int nIDButton) {
return SendDlgItemMessage((hDlg), (nIDButton), BM_GETCHECK, (WPARAM)0, (LPARAM)0);
}
__inline BOOL WINAPI CheckDlgButton(HWND hDlg, int nIDButton, UINT uCheck) {
return SendDlgItemMessage((hDlg), (nIDButton), BM_SETCHECK, (WPARAM)uCheck, (LPARAM)0);
perhaps you can use this for now in 4.50...?