CreateToastNotification method

Pointer<COMObject> CreateToastNotification(
  1. Pointer<COMObject> content
)

Implementation

Pointer<COMObject> CreateToastNotification(Pointer<COMObject> content) {
  final retValuePtr = calloc<COMObject>();

  final hr = _thisPtr.ref.vtable
          .elementAt(6)
          .cast<
              Pointer<
                  NativeFunction<
                      HRESULT Function(Pointer, Pointer<COMObject> content,
                          Pointer<COMObject>)>>>()
          .value
          .asFunction<
              int Function(
                  Pointer, Pointer<COMObject> content, Pointer<COMObject>)>()(
      _thisPtr.ref.lpVtbl,
      content.cast<Pointer<COMObject>>().value,
      retValuePtr);

  if (FAILED(hr)) throw WindowsException(hr);

  return retValuePtr;
}