CheckDlgButton method

int CheckDlgButton(
  1. Pointer<HWND__> hDlg,
  2. int nIDButton,
  3. int uCheck
)

Implementation

int CheckDlgButton(
  ffi.Pointer<HWND__> hDlg,
  int nIDButton,
  int uCheck,
) {
  return (_CheckDlgButton ??=
      _dylib.lookupFunction<_c_CheckDlgButton, _dart_CheckDlgButton>(
          'CheckDlgButton'))(
    hDlg,
    nIDButton,
    uCheck,
  );
}