[PATCH v3 0/6] MR217: windows.media.speech: ISpeechSynthesisStream stub implementation.

Rémi Bernon (@rbernon) wine at gitlab.winehq.org
Fri Jun 10 07:39:16 CDT 2022


Rémi Bernon (@rbernon) commented about dlls/windows.media.speech/synthesizer.c:
>      return S_OK;
>  }
>  
> +static HRESULT CALLBACK ssml_to_stream_operation( IInspectable *invoker, IInspectable **result )
> +{
> +    return S_OK;
> +}
> +
>  static HRESULT WINAPI synthesizer_SynthesizeSsmlToStreamAsync( ISpeechSynthesizer *iface, HSTRING ssml,
>                                                                 IAsyncOperation_SpeechSynthesisStream **operation )
>  {
>      FIXME("iface %p, text %p, operation %p stub.\n", iface, ssml, operation);
> -    return E_NOTIMPL;
> +    async_operation_inspectable_create(&IID_ISpeechSynthesisStream, NULL, ssml_to_stream_operation, (IAsyncOperation_IInspectable **)operation);
Here too, `IID_IAsyncOperation_SpeechSynthesisStream` I guess.

-- 
https://gitlab.winehq.org/wine/wine/-/merge_requests/217#note_1826



More information about the wine-devel mailing list