GetControlState method

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

Implementation

int GetControlState(int dwIDCtl, Pointer<Int32> pdwState) => ptr.ref.vtable
        .elementAt(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);