Changeset 31508 in vbox
- Timestamp:
- Aug 10, 2010 8:31:48 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64597
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cdefs.h
r28800 r31508 394 394 */ 395 395 #ifdef IN_VBOXDDU 396 # define VBOXDDU_DECL(type) DECLEXPORT(type) VBOXCALL 396 # ifdef IN_VBOXDDU_STATIC 397 # define VBOXDDU_DECL(type) type 398 # else 399 # define VBOXDDU_DECL(type) DECLEXPORT(type) VBOXCALL 400 # endif 397 401 #else 398 402 # define VBOXDDU_DECL(type) DECLIMPORT(type) VBOXCALL -
trunk/src/VBox/Devices/Storage/testcase/Makefile.kmk
r31506 r31508 50 50 ifdef VBOX_WITH_TESTCASES 51 51 PROGRAMS += tstVD tstVD-2 tstVDCopy tstVDSnap tstVDShareable tstVDSetUuid 52 if1of ($(KBUILD_TARGET), darwin freebsd linux solaris)52 if1of ($(KBUILD_TARGET), darwin freebsd linux win solaris) 53 53 PROGRAMS += VBoxFixHdd 54 54 endif … … 83 83 else ifeq ($(KBUILD_TARGET),darwin) 84 84 VBoxFixHdd_LIBS += iconv 85 else ifeq ($(KBUILD_TARGET),win) 86 VBoxFixHdd_SDKS.win = VBOX_NTDLL VBOX_ZLIB WINPSDK $(VBOX_WINDDK) 85 87 endif 86 88 tstVD_SOURCES = tstVD.cpp … … 102 104 VBoxFixHdd_DEFS += VBOX_WITH_NEW_IO_CODE 103 105 endif 104 VBoxFixHdd_DEFS += VBOX_HDD_NO_DYNAMIC_BACKENDS 106 VBoxFixHdd_DEFS += VBOX_HDD_NO_DYNAMIC_BACKENDS IN_VBOXDDU IN_VBOXDDU_STATIC IN_RT_R3 105 107 endif 106 108 -
trunk/src/VBox/Devices/Storage/testcase/tstVDSetUuidStubs.cpp
r31504 r31508 18 18 #include <iprt/assert.h> 19 19 20 #ifndef RT_OS_WINDOWS 20 21 RTDECL(bool) RTAssertShouldPanic(void) 21 22 { 22 23 return true; 23 24 } 25 #endif
Note:
See TracChangeset
for help on using the changeset viewer.