mlang: Make user32 a delay load import

Dmitry Timoshkov dmitry at codeweavers.com
Wed Nov 29 04:01:29 CST 2006


Hello,

the only import from user32 which mlang uses is wsprintfW, and it's only used
by the DllRegisterServer code, so it's reasonable to move user32 to delay load
imports.

Changelog:
    mlang: Make user32 a delay load import.

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

diff --git a/dlls/mlang/Makefile.in b/dlls/mlang/Makefile.in
index 956fd89..b362bfd 100644
--- a/dlls/mlang/Makefile.in
+++ b/dlls/mlang/Makefile.in
@@ -4,8 +4,8 @@ SRCDIR    = @srcdir@
 VPATH     = @srcdir@
 MODULE    = mlang.dll
 IMPORTLIB = libmlang.$(IMPLIBEXT)
-IMPORTS   = ole32 user32 gdi32 advapi32 kernel32 ntdll
-DELAYIMPORTS = oleaut32
+IMPORTS   = ole32 gdi32 advapi32 kernel32 ntdll
+DELAYIMPORTS = oleaut32 user32
 EXTRALIBS = -luuid
 EXTRADEFS = -DCOM_NO_WINDOWS_H
 
-- 
1.4.2






More information about the wine-patches mailing list