From 6538767a19e1d6ea0a50501b727be6851b765acd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Tue, 13 Oct 2020 18:11:35 +0200 Subject: [PATCH] windows.globalization: Fake empty 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 index 0d7a1bd6dcf..ff33cf40bdc 100644 --- a/dlls/windows.globalization.dll/windows.globalization_main.c +++ b/dlls/windows.globalization.dll/windows.globalization_main.c @@ -265,21 +265,21 @@ static HRESULT STDMETHODCALLTYPE globalization_preferences_get_Calendars(IGlobal 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, -- 2.20.1