Module: wine Branch: master Commit: fc2814623ea1c6caf18ce5555f42b7739f497c90 URL: https://gitlab.winehq.org/wine/wine/-/commit/fc2814623ea1c6caf18ce5555f42b77...
Author: Fabian Maurer dark.shadow4@web.de Date: Wed Jun 28 22:13:47 2023 +0200
windows.devices.geolocation.geolocator: Fake success for PositionChanged_add.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55126
---
dlls/windows.devices.geolocation.geolocator/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/windows.devices.geolocation.geolocator/main.c b/dlls/windows.devices.geolocation.geolocator/main.c index 3bbd6396caa..ac3641e1ec3 100644 --- a/dlls/windows.devices.geolocation.geolocator/main.c +++ b/dlls/windows.devices.geolocation.geolocator/main.c @@ -153,7 +153,7 @@ HRESULT WINAPI geolocator_GetGeopositionAsyncWithAgeAndTimeout(IGeolocator *ifac HRESULT WINAPI geolocator_add_PositionChanged(IGeolocator *iface, ITypedEventHandler_Geolocator_PositionChangedEventArgs *handler, EventRegistrationToken *token) { FIXME("iface %p, handler %p, token %p stub.\n", iface, handler, token); - return E_NOTIMPL; + return S_OK; }
HRESULT WINAPI geolocator_remove_PositionChanged(IGeolocator *iface, EventRegistrationToken token)