remove_Updated method

void remove_Updated(
  1. int token
)

Implementation

void remove_Updated(int token) {
  final hr =
      ptr.ref.vtable
              .elementAt(14)
              .cast<
                  Pointer<
                      NativeFunction<
                          HRESULT Function(
                              VTablePointer lpVtbl, IntPtr token)>>>()
              .value
              .asFunction<int Function(VTablePointer lpVtbl, int token)>()(
          ptr.ref.lpVtbl, token);

  if (FAILED(hr)) throwWindowsException(hr);
}