remove method

int remove(
  1. int lId,
  2. int lFlags
)

Implementation

int remove(int lId, int lFlags) => (ptr.ref.vtable + 6)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Int32 lId, Int32 lFlags)>>>()
        .value
        .asFunction<int Function(Pointer, int lId, int lFlags)>()(
    ptr.ref.lpVtbl, lId, lFlags);