Zebediah Figura : setupapi: Delay-load user32.

Alexandre Julliard julliard at winehq.org
Tue Jun 25 17:25:51 CDT 2019


Module: wine
Branch: master
Commit: 00e71346329a79b32e6e62e1a4e8003aef8e00a7
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=00e71346329a79b32e6e62e1a4e8003aef8e00a7

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Sat Jun 22 10:12:33 2019 -0500

setupapi: Delay-load user32.

We want to load setupapi from services.exe. We do not want to initialize
user32 there, as that results in the creation of a window station.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/setupapi/Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/setupapi/Makefile.in b/dlls/setupapi/Makefile.in
index bf157cb..6bb9d59 100644
--- a/dlls/setupapi/Makefile.in
+++ b/dlls/setupapi/Makefile.in
@@ -1,8 +1,8 @@
 EXTRADEFS = -D_SETUPAPI_
 MODULE    = setupapi.dll
 IMPORTLIB = setupapi
-IMPORTS   = uuid user32 version advapi32 rpcrt4
-DELAYIMPORTS = shell32 wintrust ole32 winspool comdlg32
+IMPORTS   = uuid version advapi32 rpcrt4
+DELAYIMPORTS = shell32 wintrust ole32 winspool comdlg32 user32
 
 C_SRCS = \
 	devinst.c \




More information about the wine-cvs mailing list