CheckDlgButton function user32

int CheckDlgButton(
  1. int hDlg,
  2. int nIDButton,
  3. int uCheck
)

Changes the check state of a button control.

BOOL CheckDlgButton(
  HWND hDlg,
  int  nIDButton,
  UINT uCheck
);

Implementation

int CheckDlgButton(int hDlg, int nIDButton, int uCheck) =>
    _CheckDlgButton(hDlg, nIDButton, uCheck);