pickSaveFileAndContinue method

  1. @Deprecated("Instead, use PickSaveFileAsync")
void pickSaveFileAndContinue()

Implementation

@Deprecated("Instead, use PickSaveFileAsync")
void pickSaveFileAndContinue() {
  final hr = ptr.ref.vtable
      .elementAt(7)
      .cast<Pointer<NativeFunction<HRESULT Function(VTablePointer lpVtbl)>>>()
      .value
      .asFunction<int Function(VTablePointer lpVtbl)>()(ptr.ref.lpVtbl);

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