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@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Zebediah Figura 2019-06-22 10:12:33 -05:00 committed by Alexandre Julliard
parent b06740ecde
commit 00e7134632
1 changed files with 2 additions and 2 deletions

View File

@ -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 \