mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
54 lines
2.0 KiB
Diff
54 lines
2.0 KiB
Diff
From 619f2108b20c843ca1ba75d18fb7cbc50c80bd5e Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?R=C3=A9mi=20Bernon?= <rbernon@codeweavers.com>
|
|
Date: Fri, 9 Oct 2020 14:06:33 +0200
|
|
Subject: [PATCH 4/4] windows.media.speech: Fake empty
|
|
IInstalledVoicesStatic::AllVoices vector.
|
|
|
|
---
|
|
.../windows.media.speech_main.c | 11 +++++++----
|
|
1 file changed, 7 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/dlls/windows.media.speech.dll/windows.media.speech_main.c b/dlls/windows.media.speech.dll/windows.media.speech_main.c
|
|
index 1f9c2bdc0b9..5fe2e60ec42 100644
|
|
--- a/dlls/windows.media.speech.dll/windows.media.speech_main.c
|
|
+++ b/dlls/windows.media.speech.dll/windows.media.speech_main.c
|
|
@@ -113,28 +113,31 @@ static HRESULT STDMETHODCALLTYPE vector_view_voice_information_GetAt(
|
|
IVectorView_VoiceInformation *iface, ULONG index, IVoiceInformation **value)
|
|
{
|
|
FIXME("iface %p, index %#x, value %p stub!\n", iface, index, value);
|
|
- return E_NOTIMPL;
|
|
+ return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE vector_view_voice_information_get_Size(
|
|
IVectorView_VoiceInformation *iface, ULONG *value)
|
|
{
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
- return E_NOTIMPL;
|
|
+ *value = 0;
|
|
+ return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE vector_view_voice_information_IndexOf(
|
|
IVectorView_VoiceInformation *iface, IVoiceInformation *element, ULONG *index, BOOLEAN *value)
|
|
{
|
|
FIXME("iface %p, element %p, index %p, value %p stub!\n", iface, element, index, value);
|
|
- return E_NOTIMPL;
|
|
+ *value = FALSE;
|
|
+ return S_OK;
|
|
}
|
|
|
|
static HRESULT STDMETHODCALLTYPE vector_view_voice_information_GetMany(
|
|
IVectorView_VoiceInformation *iface, ULONG start_index, IVoiceInformation **items, UINT *value)
|
|
{
|
|
FIXME("iface %p, start_index %#x, items %p, value %p stub!\n", iface, start_index, items, value);
|
|
- return E_NOTIMPL;
|
|
+ *value = 0;
|
|
+ return S_OK;
|
|
}
|
|
|
|
static const struct IVectorView_VoiceInformationVtbl vector_view_voice_information_vtbl =
|
|
--
|
|
2.28.0
|
|
|