addCheckButton method

int addCheckButton(
  1. int dwIDCtl,
  2. Pointer<Utf16> pszLabel,
  3. int bChecked
)

Implementation

int addCheckButton(int dwIDCtl, Pointer<Utf16> pszLabel, int bChecked) =>
    ptr.ref.vtable
        .elementAt(8)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Uint32 dwIDCtl,
                        Pointer<Utf16> pszLabel, Int32 bChecked)>>>()
        .value
        .asFunction<
            int Function(Pointer, int dwIDCtl, Pointer<Utf16> pszLabel,
                int bChecked)>()(ptr.ref.lpVtbl, dwIDCtl, pszLabel, bChecked);