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>
This commit is contained in:
parent
b06740ecde
commit
00e7134632
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue