Changeset 106813 in vbox for trunk/src/VBox/Installer/win
- Timestamp:
- Nov 1, 2024 12:30:41 AM (3 months ago)
- Location:
- trunk/src/VBox/Installer/win/Stub
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/Makefile.kmk
r106798 r106813 56 56 VBoxStub_SDKS = \ 57 57 VBoxNtDll 58 ifdef VBoxStub_BLD_TRG_ARCH59 VBoxStub_LIBS += \60 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/delayimp.lib61 else62 VBoxStub_LIBS += \63 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib64 endif65 58 66 VBoxStub_LDFLAGS = -SubSystem:Windows -DelayLoad:comctl32.dll59 VBoxStub_LDFLAGS = -SubSystem:Windows 67 60 VBoxStub_POST_CMDS = $(VBOX_CHECK_IMPORTS) --image $(out) ntdll.dll kernel32.dll 68 61 ifeq ($(KBUILD_TYPE),asan) … … 180 173 $(VBOX_DEF_2_LAZY_LOAD) --target "$(VBoxStub_BLD_TRG_ARCH)" --system --library SHELL32.DLL --output "$@" $(filter %.def, $^) 181 174 175 # Dynamic import no. 6: COMCTL32.DLL 176 VBoxStub_SOURCES += $(VBoxStub_0_OUTDIR)/ComCtl32LazyLoad.asm 177 VBoxStub_CLEAN += $(VBoxStub_0_OUTDIR)/ComCtl32LazyLoad.asm 178 $$(VBoxStub_0_OUTDIR)/ComCtl32LazyLoad.asm: $(PATH_SUB_CURRENT)/comctl32.def $(VBOX_DEF_2_LAZY_LOAD) | $$(dir $$@) 179 $(call MSG_TOOL,VBoxDef2LazyLoad,VBoxStub,$(filter %.def, $^),$@) 180 $(QUIET)$(RM) -f -- "$@" 181 $(VBOX_DEF_2_LAZY_LOAD) --target "$(VBoxStub_BLD_TRG_ARCH)" --system --library COMCTL32.DLL --output "$@" $(filter %.def, $^) 182 182 183 include $(FILE_KBUILD_SUB_FOOTER) 183 184 -
trunk/src/VBox/Installer/win/Stub/comctl32.def
r106812 r106813 1 1 ; $Id$ 2 2 ;; @file 3 ; Definitions for USER32.DLL lazy import library.3 ; Definitions for COMCTL32.DLL lazy import library. 4 4 ; 5 5 … … 26 26 ; 27 27 28 LIBRARY USER32.DLL28 LIBRARY COMCTL32.DLL 29 29 EXPORTS 30 _MessageBoxW@16 31 _MessageBoxA@16 32 _GetDesktopWindow@0 30 _InitCommonControlsEx@4 33 31
Note:
See TracChangeset
for help on using the changeset viewer.