addControlItem method

int addControlItem(
  1. int dwIDCtl,
  2. int dwIDItem,
  3. Pointer<Utf16> pszLabel
)

Implementation

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