Module: wine Branch: master Commit: eed778467ab65fb306e1bf776947e2067739b536 URL: https://gitlab.winehq.org/wine/wine/-/commit/eed778467ab65fb306e1bf776947e20...
Author: Eric Pouech epouech@codeweavers.com Date: Thu Dec 28 09:50:01 2023 +0100
quartz: Delay import ddraw.
So that ddraw isn't always loaded, esp. for app not requesting vmr7. Could lower memory pressure on 32bit.
Signed-off-by: Eric Pouech epouech@codeweavers.com
---
dlls/quartz/Makefile.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dlls/quartz/Makefile.in b/dlls/quartz/Makefile.in index a1859dd58a5..1456d281cb8 100644 --- a/dlls/quartz/Makefile.in +++ b/dlls/quartz/Makefile.in @@ -1,6 +1,7 @@ -MODULE = quartz.dll -IMPORTLIB = quartz -IMPORTS = strmiids dxguid strmbase uuid ddraw dsound msacm32 msvfw32 ole32 oleaut32 rpcrt4 user32 gdi32 advapi32 winmm +MODULE = quartz.dll +IMPORTLIB = quartz +IMPORTS = strmiids dxguid strmbase uuid dsound msacm32 msvfw32 ole32 oleaut32 rpcrt4 user32 gdi32 advapi32 winmm +DELAYIMPORTS = ddraw
SOURCES = \ acmwrapper.c \