remove_Updated method
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);
}