2021-02-26 20:46:07 -08:00
|
|
|
From 6538767a19e1d6ea0a50501b727be6851b765acd Mon Sep 17 00:00:00 2001
|
2020-10-14 00:14:26 -07:00
|
|
|
From: =?UTF-8?q?R=C3=A9mi=20Bernon?= <rbernon@codeweavers.com>
|
|
|
|
Date: Tue, 13 Oct 2020 18:11:35 +0200
|
2021-02-26 20:46:07 -08:00
|
|
|
Subject: [PATCH] windows.globalization: Fake empty
|
2020-10-14 00:14:26 -07:00
|
|
|
IGlobalizationPreferencesStatics properties.
|
|
|
|
|
|
|
|
---
|
|
|
|
dlls/windows.globalization.dll/windows.globalization_main.c | 6 +++---
|
|
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/dlls/windows.globalization.dll/windows.globalization_main.c b/dlls/windows.globalization.dll/windows.globalization_main.c
|
2021-02-26 20:46:07 -08:00
|
|
|
index 0d7a1bd6dcf..ff33cf40bdc 100644
|
2020-10-14 00:14:26 -07:00
|
|
|
--- a/dlls/windows.globalization.dll/windows.globalization_main.c
|
|
|
|
+++ b/dlls/windows.globalization.dll/windows.globalization_main.c
|
2021-02-26 20:46:07 -08:00
|
|
|
@@ -265,21 +265,21 @@ static HRESULT STDMETHODCALLTYPE globalization_preferences_get_Calendars(IGlobal
|
2020-10-14 00:14:26 -07:00
|
|
|
IVectorView_HSTRING **value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
- return E_NOTIMPL;
|
|
|
|
+ return hstring_vector_create(NULL, 0, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE globalization_preferences_get_Clocks(IGlobalizationPreferencesStatics *iface,
|
|
|
|
IVectorView_HSTRING **value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
- return E_NOTIMPL;
|
|
|
|
+ return hstring_vector_create(NULL, 0, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE globalization_preferences_get_Currencies(IGlobalizationPreferencesStatics *iface,
|
|
|
|
IVectorView_HSTRING **value)
|
|
|
|
{
|
|
|
|
FIXME("iface %p, value %p stub!\n", iface, value);
|
|
|
|
- return E_NOTIMPL;
|
|
|
|
+ return hstring_vector_create(NULL, 0, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE globalization_preferences_get_Languages(IGlobalizationPreferencesStatics *iface,
|
|
|
|
--
|
2021-02-26 20:46:07 -08:00
|
|
|
2.20.1
|
2020-10-14 00:14:26 -07:00
|
|
|
|