- Timestamp:
- Apr 17, 2020 3:59:51 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137290
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/win/dbghelp.h
r83738 r83767 1 1 /** @file 2 * Safe way to include dbghelp.h.2 * Safe way to include Dbghelp.h. 3 3 */ 4 4 … … 32 32 #ifdef _MSC_VER 33 33 /* 34 * Unfortunately, the Windows.h file in SDK 7.1 is not clean wrt warning C 2220with VCC141:34 * Unfortunately, the Windows.h file in SDK 7.1 is not clean wrt warning C4091 with VCC141: 35 35 * Dbghelp.h(1540): warning C4091: 'typedef ': ignored on left of '<unnamed-enum-hdBase>' when no variable is declared 36 36 * Dbghelp.h(3056): warning C4091: 'typedef ': ignored on left of '<unnamed-enum-sfImage>' when no variable is declared -
trunk/src/VBox/Runtime/tools/Makefile.kmk
r82665 r83767 43 43 bldRTIsoMaker_DEFS = \ 44 44 IPRT_BLDCFG_SCM_REV=$(if $(VBOX_SVN_REV_FALLBACK),$(VBOX_SVN_REV_FALLBACK),$(VBOX_SVN_REV)) \ 45 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \46 45 IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \ 47 46 IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \ 48 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD) \ 47 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD) 48 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING 49 bldRTIsoMaker_DEFS += \ 50 IPRT_BLDCFG_VERSION_STRING="$(VBOX_VERSION_STRING)" \ 51 IPRT_BLDCFG_TARGET="$(KBUILD_TARGET)" \ 52 IPRT_BLDCFG_TARGET_ARCH="$(KBUILD_TARGET_ARCH)" \ 53 IPRT_BLDCFG_TYPE="$(KBUILD_TYPE)" 54 else 55 bldRTIsoMaker_DEFS += \ 56 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \ 49 57 IPRT_BLDCFG_TARGET=\"$(KBUILD_TARGET)\" \ 50 58 IPRT_BLDCFG_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\" \ 51 59 IPRT_BLDCFG_TYPE=\"$(KBUILD_TYPE)\" 60 endif 52 61 bldRTIsoMaker_INCS = ../include 53 62 endif -
trunk/src/VBox/Runtime/tools/RTSignTool.cpp
r82968 r83767 57 57 #ifdef RT_OS_WINDOWS 58 58 # include <iprt/win/windows.h> 59 # include < ImageHlp.h>59 # include <iprt/win/imagehlp.h> 60 60 #endif 61 61
Note:
See TracChangeset
for help on using the changeset viewer.