[PATCH v2 4/4] ntoskrnl.exe: change setupapi to IMPORTS from DELAYIMPORTS

Jordan Coppard jordan at niau.io
Mon Jul 27 06:22:20 CDT 2020


Using DELAYIMPORTS is breaking startup of some applications.
After discussion in #winehackers IRC, it was remarked that
there is no good reason to keep setupapi under DELAYIMPORTS,
thus I have moved all occurrences of it to IMPORTS instead.

Signed-off-by: Jordan Coppard <jordan at niau.io>
---
v2: seperate commits to lower scope
---
 dlls/ntoskrnl.exe/Makefile.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ntoskrnl.exe/Makefile.in b/dlls/ntoskrnl.exe/Makefile.in
index df48e44ede..10e5b7951e 100644
--- a/dlls/ntoskrnl.exe/Makefile.in
+++ b/dlls/ntoskrnl.exe/Makefile.in
@@ -1,7 +1,7 @@
 MODULE    = ntoskrnl.exe
 IMPORTLIB = ntoskrnl
-IMPORTS   = advapi32 hal msvcrt
-DELAYIMPORTS = rpcrt4 setupapi
+IMPORTS   = advapi32 hal msvcrt setupapi
+DELAYIMPORTS = rpcrt4
 
 EXTRADLLFLAGS = -mno-cygwin
 
-- 
2.27.0




More information about the wine-devel mailing list