getCheckButtonState method

int getCheckButtonState(
  1. int dwIDCtl,
  2. Pointer<Int32> pbChecked
)

Implementation

int getCheckButtonState(int dwIDCtl, Pointer<Int32> pbChecked) =>
    (ptr.ref.vtable + 17)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Uint32 dwIDCtl,
                            Pointer<Int32> pbChecked)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, int dwIDCtl, Pointer<Int32> pbChecked)>()(
        ptr.ref.lpVtbl, dwIDCtl, pbChecked);