This is needed by the latest java installer Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57343
From: Fabian Maurer dark.shadow4@web.de
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57343 --- dlls/ieframe/ie.c | 6 ++++++ dlls/ieframe/ieframe.spec | 1 + 2 files changed, 7 insertions(+)
diff --git a/dlls/ieframe/ie.c b/dlls/ieframe/ie.c index e44178f3aaa..2e9503ab77a 100644 --- a/dlls/ieframe/ie.c +++ b/dlls/ieframe/ie.c @@ -875,3 +875,9 @@ void InternetExplorer_WebBrowser_Init(InternetExplorer *This) This->IExternalConnection_iface.lpVtbl = &ExternalConnectionVtbl; This->IServiceProvider_iface.lpVtbl = &ServiceProviderVtbl; } + +HRESULT WINAPI IERefreshElevationPolicy(void) +{ + FIXME("(): stub\n"); + return 0; +} diff --git a/dlls/ieframe/ieframe.spec b/dlls/ieframe/ieframe.spec index 27d73c5aa62..8205ea5198e 100644 --- a/dlls/ieframe/ieframe.spec +++ b/dlls/ieframe/ieframe.spec @@ -6,5 +6,6 @@ @ stdcall -private DllRegisterServer() @ stdcall -private DllUnregisterServer() @ stdcall IEGetWriteableHKCU(ptr) +@ stdcall IERefreshElevationPolicy() @ stdcall OpenURL(long long str long) @ stdcall SetQueryNetSessionCount(long)
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=149752
Your paranoid android.
=== debian11b (64 bit WoW report) ===
user32: win.c:4070: Test failed: Expected active window 0000000005190178, got 0000000000000000. win.c:4071: Test failed: Expected focus window 0000000005190178, got 0000000000000000.
Jacek Caban (@jacek) commented about dlls/ieframe/ie.c:
This->IExternalConnection_iface.lpVtbl = &ExternalConnectionVtbl; This->IServiceProvider_iface.lpVtbl = &ServiceProviderVtbl;
}
+HRESULT WINAPI IERefreshElevationPolicy(void) +{
- FIXME("(): stub\n");
- return 0;
That's `S_OK` for `HRESULT`.