Move user32 to delay loaded imports

Dmitry Timoshkov dmitry at baikal.ru
Sat Oct 1 23:12:01 CDT 2005


Hello,

the only import ws2_32 is using from user32 is PostMessage, so it's more
appropriate to have it as a delay loaded dependency. Moreover that's what
Windows does.

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Move user32 to delay loaded imports.

--- cvs/hq/wine/dlls/winsock/Makefile.in	2005-05-13 10:37:04.000000000 +0900
+++ wine/dlls/winsock/Makefile.in	2005-10-02 12:05:31.000000000 +0900
@@ -5,7 +5,8 @@ SRCDIR    = @srcdir@
 VPATH     = @srcdir@
 MODULE    = ws2_32.dll
 IMPORTLIB = libws2_32.$(IMPLIBEXT)
-IMPORTS   = user32 iphlpapi kernel32 ntdll
+IMPORTS   = iphlpapi kernel32 ntdll
+DELAYIMPORTS = user32
 EXTRALIBS = $(LIBUNICODE)
 
 C_SRCS = \






More information about the wine-patches mailing list