getControlState method

int getControlState(
  1. int dwIDCtl,
  2. Pointer<Int32> pdwState
)

Implementation

int getControlState(int dwIDCtl, Pointer<Int32> pdwState) => (ptr.ref.vtable +
            13)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(
                        Pointer, Uint32 dwIDCtl, Pointer<Int32> pdwState)>>>()
        .value
        .asFunction<
            int Function(Pointer, int dwIDCtl, Pointer<Int32> pdwState)>()(
    ptr.ref.lpVtbl, dwIDCtl, pdwState);