Changeset 33567 in vbox
- Timestamp:
- Oct 28, 2010 3:37:21 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67173
- Location:
- trunk
- Files:
-
- 2 added
- 22 edited
- 15 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/VBox/vd-cache-plugin.h ¶
r33554 r33567 27 27 #define __VBoxHDD_CachePlugin_h__ 28 28 29 #include <VBox/ VBoxHDD.h>29 #include <VBox/vd.h> 30 30 31 31 /** -
TabularUnified trunk/include/VBox/vd-plugin.h ¶
r33554 r33567 27 27 #define __VBoxHDD_Plugin_h__ 28 28 29 #include <VBox/ VBoxHDD.h>29 #include <VBox/vd.h> 30 30 31 31 -
TabularUnified trunk/include/VBox/vd.h ¶
r33554 r33567 2016 2016 */ 2017 2017 VBOXDDU_DECL(int) VDBackendInfo(unsigned cEntriesAlloc, PVDBACKENDINFO pEntries, 2018 unsigned *pcEntriesUsed);2018 unsigned *pcEntriesUsed); 2019 2019 2020 2020 /** … … 2061 2061 */ 2062 2062 VBOXDDU_DECL(int) VDGetFormat(PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage, 2063 const char *pszFilename, char **ppszFormat, VDTYPE *penmType);2063 const char *pszFilename, char **ppszFormat, VDTYPE *penmType); 2064 2064 2065 2065 /** … … 2084 2084 */ 2085 2085 VBOXDDU_DECL(int) VDOpen(PVBOXHDD pDisk, const char *pszBackend, 2086 const char *pszFilename, unsigned uOpenFlags,2087 PVDINTERFACE pVDIfsImage);2086 const char *pszFilename, unsigned uOpenFlags, 2087 PVDINTERFACE pVDIfsImage); 2088 2088 2089 2089 /** … … 2098 2098 */ 2099 2099 VBOXDDU_DECL(int) VDCacheOpen(PVBOXHDD pDisk, const char *pszBackend, 2100 const char *pszFilename, unsigned uOpenFlags,2101 PVDINTERFACE pVDIfsCache);2100 const char *pszFilename, unsigned uOpenFlags, 2101 PVDINTERFACE pVDIfsCache); 2102 2102 2103 2103 /** … … 2119 2119 */ 2120 2120 VBOXDDU_DECL(int) VDCreateBase(PVBOXHDD pDisk, const char *pszBackend, 2121 const char *pszFilename, uint64_t cbSize,2122 unsigned uImageFlags, const char *pszComment,2123 PCVDGEOMETRY pPCHSGeometry,2124 PCVDGEOMETRY pLCHSGeometry,2125 PCRTUUID pUuid, unsigned uOpenFlags,2126 PVDINTERFACE pVDIfsImage,2127 PVDINTERFACE pVDIfsOperation);2121 const char *pszFilename, uint64_t cbSize, 2122 unsigned uImageFlags, const char *pszComment, 2123 PCVDGEOMETRY pPCHSGeometry, 2124 PCVDGEOMETRY pLCHSGeometry, 2125 PCRTUUID pUuid, unsigned uOpenFlags, 2126 PVDINTERFACE pVDIfsImage, 2127 PVDINTERFACE pVDIfsOperation); 2128 2128 2129 2129 /** … … 2144 2144 */ 2145 2145 VBOXDDU_DECL(int) VDCreateDiff(PVBOXHDD pDisk, const char *pszBackend, 2146 const char *pszFilename, unsigned uImageFlags,2147 const char *pszComment, PCRTUUID pUuid,2148 PCRTUUID pParentUuid, unsigned uOpenFlags,2149 PVDINTERFACE pVDIfsImage,2150 PVDINTERFACE pVDIfsOperation);2146 const char *pszFilename, unsigned uImageFlags, 2147 const char *pszComment, PCRTUUID pUuid, 2148 PCRTUUID pParentUuid, unsigned uOpenFlags, 2149 PVDINTERFACE pVDIfsImage, 2150 PVDINTERFACE pVDIfsOperation); 2151 2151 2152 2152 /** … … 2165 2165 */ 2166 2166 VBOXDDU_DECL(int) VDCreateCache(PVBOXHDD pDisk, const char *pszBackend, 2167 const char *pszFilename, uint64_t cbSize,2168 unsigned uImageFlags, const char *pszComment,2169 PCRTUUID pUuid, unsigned uOpenFlags,2170 PVDINTERFACE pVDIfsCache, PVDINTERFACE pVDIfsOperation);2167 const char *pszFilename, uint64_t cbSize, 2168 unsigned uImageFlags, const char *pszComment, 2169 PCRTUUID pUuid, unsigned uOpenFlags, 2170 PVDINTERFACE pVDIfsCache, PVDINTERFACE pVDIfsOperation); 2171 2171 2172 2172 /** … … 2184 2184 */ 2185 2185 VBOXDDU_DECL(int) VDMerge(PVBOXHDD pDisk, unsigned nImageFrom, 2186 unsigned nImageTo, PVDINTERFACE pVDIfsOperation);2186 unsigned nImageTo, PVDINTERFACE pVDIfsOperation); 2187 2187 2188 2188 /** … … 2224 2224 */ 2225 2225 VBOXDDU_DECL(int) VDCopy(PVBOXHDD pDiskFrom, unsigned nImage, PVBOXHDD pDiskTo, 2226 const char *pszBackend, const char *pszFilename,2227 bool fMoveByRename, uint64_t cbSize,2228 unsigned uImageFlags, PCRTUUID pDstUuid,2229 unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation,2230 PVDINTERFACE pDstVDIfsImage,2231 PVDINTERFACE pDstVDIfsOperation);2226 const char *pszBackend, const char *pszFilename, 2227 bool fMoveByRename, uint64_t cbSize, 2228 unsigned uImageFlags, PCRTUUID pDstUuid, 2229 unsigned uOpenFlags, PVDINTERFACE pVDIfsOperation, 2230 PVDINTERFACE pDstVDIfsImage, 2231 PVDINTERFACE pDstVDIfsOperation); 2232 2232 2233 2233 /** … … 2253 2253 */ 2254 2254 VBOXDDU_DECL(int) VDCompact(PVBOXHDD pDisk, unsigned nImage, 2255 PVDINTERFACE pVDIfsOperation);2255 PVDINTERFACE pVDIfsOperation); 2256 2256 2257 2257 /** … … 2269 2269 */ 2270 2270 VBOXDDU_DECL(int) VDResize(PVBOXHDD pDisk, uint64_t cbSize, 2271 PCVDGEOMETRY pPCHSGeometry,2272 PCVDGEOMETRY pLCHSGeometry,2273 PVDINTERFACE pVDIfsOperation);2271 PCVDGEOMETRY pPCHSGeometry, 2272 PCVDGEOMETRY pLCHSGeometry, 2273 PVDINTERFACE pVDIfsOperation); 2274 2274 2275 2275 /** … … 2389 2389 */ 2390 2390 VBOXDDU_DECL(int) VDGetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage, 2391 PVDGEOMETRY pPCHSGeometry);2391 PVDGEOMETRY pPCHSGeometry); 2392 2392 2393 2393 /** … … 2401 2401 */ 2402 2402 VBOXDDU_DECL(int) VDSetPCHSGeometry(PVBOXHDD pDisk, unsigned nImage, 2403 PCVDGEOMETRY pPCHSGeometry);2403 PCVDGEOMETRY pPCHSGeometry); 2404 2404 2405 2405 /** … … 2414 2414 */ 2415 2415 VBOXDDU_DECL(int) VDGetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage, 2416 PVDGEOMETRY pLCHSGeometry);2416 PVDGEOMETRY pLCHSGeometry); 2417 2417 2418 2418 /** … … 2426 2426 */ 2427 2427 VBOXDDU_DECL(int) VDSetLCHSGeometry(PVBOXHDD pDisk, unsigned nImage, 2428 PCVDGEOMETRY pLCHSGeometry);2428 PCVDGEOMETRY pLCHSGeometry); 2429 2429 2430 2430 /** … … 2438 2438 */ 2439 2439 VBOXDDU_DECL(int) VDGetVersion(PVBOXHDD pDisk, unsigned nImage, 2440 unsigned *puVersion);2440 unsigned *puVersion); 2441 2441 2442 2442 /** … … 2450 2450 */ 2451 2451 VBOXDDU_DECL(int) VDBackendInfoSingle(PVBOXHDD pDisk, unsigned nImage, 2452 PVDBACKENDINFO pBackendInfo);2452 PVDBACKENDINFO pBackendInfo); 2453 2453 2454 2454 /** … … 2473 2473 */ 2474 2474 VBOXDDU_DECL(int) VDGetOpenFlags(PVBOXHDD pDisk, unsigned nImage, 2475 unsigned *puOpenFlags);2475 unsigned *puOpenFlags); 2476 2476 2477 2477 /** … … 2487 2487 */ 2488 2488 VBOXDDU_DECL(int) VDSetOpenFlags(PVBOXHDD pDisk, unsigned nImage, 2489 unsigned uOpenFlags);2489 unsigned uOpenFlags); 2490 2490 2491 2491 /** … … 2503 2503 */ 2504 2504 VBOXDDU_DECL(int) VDGetFilename(PVBOXHDD pDisk, unsigned nImage, 2505 char *pszFilename, unsigned cbFilename);2505 char *pszFilename, unsigned cbFilename); 2506 2506 2507 2507 /** … … 2517 2517 */ 2518 2518 VBOXDDU_DECL(int) VDGetComment(PVBOXHDD pDisk, unsigned nImage, 2519 char *pszComment, unsigned cbComment);2519 char *pszComment, unsigned cbComment); 2520 2520 2521 2521 /** … … 2529 2529 */ 2530 2530 VBOXDDU_DECL(int) VDSetComment(PVBOXHDD pDisk, unsigned nImage, 2531 const char *pszComment);2531 const char *pszComment); 2532 2532 2533 2533 /** … … 2563 2563 */ 2564 2564 VBOXDDU_DECL(int) VDGetModificationUuid(PVBOXHDD pDisk, unsigned nImage, 2565 PRTUUID pUuid);2565 PRTUUID pUuid); 2566 2566 2567 2567 /** … … 2575 2575 */ 2576 2576 VBOXDDU_DECL(int) VDSetModificationUuid(PVBOXHDD pDisk, unsigned nImage, 2577 PCRTUUID pUuid);2577 PCRTUUID pUuid); 2578 2578 2579 2579 /** … … 2587 2587 */ 2588 2588 VBOXDDU_DECL(int) VDGetParentUuid(PVBOXHDD pDisk, unsigned nImage, 2589 PRTUUID pUuid);2589 PRTUUID pUuid); 2590 2590 2591 2591 /** … … 2598 2598 */ 2599 2599 VBOXDDU_DECL(int) VDSetParentUuid(PVBOXHDD pDisk, unsigned nImage, 2600 PCRTUUID pUuid);2600 PCRTUUID pUuid); 2601 2601 2602 2602 … … 2634 2634 */ 2635 2635 VBOXDDU_DECL(int) VDAsyncRead(PVBOXHDD pDisk, uint64_t uOffset, size_t cbRead, 2636 PCRTSGSEG paSeg, unsigned cSeg,2637 PFNVDASYNCTRANSFERCOMPLETE pfnComplete,2638 void *pvUser1, void *pvUser2);2636 PCRTSGSEG paSeg, unsigned cSeg, 2637 PFNVDASYNCTRANSFERCOMPLETE pfnComplete, 2638 void *pvUser1, void *pvUser2); 2639 2639 2640 2640 … … 2652 2652 */ 2653 2653 VBOXDDU_DECL(int) VDAsyncWrite(PVBOXHDD pDisk, uint64_t uOffset, size_t cbWrite, 2654 PCRTSGSEG paSeg, unsigned cSeg,2655 PFNVDASYNCTRANSFERCOMPLETE pfnComplete,2656 void *pvUser1, void *pvUser2);2654 PCRTSGSEG paSeg, unsigned cSeg, 2655 PFNVDASYNCTRANSFERCOMPLETE pfnComplete, 2656 void *pvUser1, void *pvUser2); 2657 2657 2658 2658 … … 2666 2666 */ 2667 2667 VBOXDDU_DECL(int) VDAsyncFlush(PVBOXHDD pDisk, 2668 PFNVDASYNCTRANSFERCOMPLETE pfnComplete,2669 void *pvUser1, void *pvUser2);2668 PFNVDASYNCTRANSFERCOMPLETE pfnComplete, 2669 void *pvUser1, void *pvUser2); 2670 2670 RT_C_DECLS_END 2671 2671 -
TabularUnified trunk/src/VBox/Devices/Makefile.kmk ¶
r33442 r33567 26 26 include $(PATH_SUB_CURRENT)/Graphics/BIOS/Makefile.kmk 27 27 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk 28 include $(PATH_SUB_CURRENT)/Storage/testcase/Makefile.kmk29 ifndef VBOX_OSE30 include $(PATH_SUB_CURRENT)/Storage/VBoxHDDFormats/Makefile.kmk31 endif32 28 ifdef VBOX_WITH_EFI 33 29 include $(PATH_SUB_CURRENT)/EFI/Thunk/Makefile.kmk … … 77 73 endif 78 74 VBoxDDU_SOURCES = \ 79 Storage/VBoxHDD.cpp \80 Storage/VDIHDDCore.cpp \81 Storage/VHDHDDCore.cpp \82 Storage/VmdkHDDCore.cpp \83 Storage/RawHDDCore.cpp \84 Storage/ParallelsHDDCore.cpp \85 Storage/DMGHDDCore.cpp \86 Storage/VCICacheCore.cpp \87 75 Storage/VSCSI/VSCSIDevice.cpp \ 88 76 Storage/VSCSI/VSCSILun.cpp \ … … 97 85 endif 98 86 VBoxDDU_LIBS = \ 99 $(LIB_RUNTIME) 87 $(LIB_RUNTIME) \ 88 $(PATH_LIB)/StorageLib$(VBOX_SUFF_LIB) 100 89 ifdef VBOX_WITH_USB 101 90 VBoxDDU_LIBS += \ … … 1057 1046 1058 1047 ifdef VBOX_WITH_ISCSI 1059 VBoxDDU_SOURCES += \1060 Storage/ISCSIHDDCore.cpp1061 VBoxDDU_DEFS += VBOX_WITH_ISCSI1062 1048 Storage/DrvVD.cpp_INCS = \ 1063 1049 Network/lwip/src/include \ -
TabularUnified trunk/src/VBox/Devices/Storage/DrvVD.cpp ¶
r33540 r33567 21 21 *******************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_DRV_VD 23 #include <VBox/ VBoxHDD.h>23 #include <VBox/vd.h> 24 24 #include <VBox/pdmdrv.h> 25 25 #include <VBox/pdmasynccompletion.h> -
TabularUnified trunk/src/VBox/Devices/VBoxDDUDeps.cpp ¶
r28800 r33567 20 20 *******************************************************************************/ 21 21 #include <VBox/types.h> 22 #include <VBox/vd.h> 22 23 #ifdef VBOX_WITH_USB 23 24 # include <VBox/usblib.h> … … 34 35 PFNRT g_apfnVBoxDDUDeps[] = 35 36 { 37 (PFNRT)VDInit, 36 38 #ifdef VBOX_WITH_USB 37 39 (PFNRT)USBFilterInit, -
TabularUnified trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp ¶
r33550 r33567 33 33 #include <VBox/com/VirtualBox.h> 34 34 35 #include <VBox/ VBoxHDD.h>35 #include <VBox/vd.h> 36 36 #include <VBox/sup.h> 37 37 #include <VBox/err.h> -
TabularUnified trunk/src/VBox/Frontends/VBoxManage/VBoxManageDisk.cpp ¶
r33540 r33567 36 36 #include <iprt/getopt.h> 37 37 #include <VBox/log.h> 38 #include <VBox/ VBoxHDD.h>38 #include <VBox/vd.h> 39 39 40 40 #include "VBoxManage.h" -
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp ¶
r33540 r33567 19 19 20 20 #include "VBoxGlobal.h" 21 #include <VBox/ VBoxHDD.h>21 #include <VBox/vd.h> 22 22 #include <VBox/version.h> 23 23 -
TabularUnified trunk/src/VBox/Main/ApplianceImplIO.cpp ¶
r33536 r33567 31 31 #include <iprt/stream.h> 32 32 #include <iprt/circbuf.h> 33 #include <VBox/ VBoxHDD.h>33 #include <VBox/vd.h> 34 34 35 35 /****************************************************************************** -
TabularUnified trunk/src/VBox/Main/ApplianceImplImport.cpp ¶
r33540 r33567 26 26 #include <iprt/stream.h> 27 27 28 #include <VBox/ VBoxHDD.h>28 #include <VBox/vd.h> 29 29 #include <VBox/com/array.h> 30 30 -
TabularUnified trunk/src/VBox/Main/MediumFormatImpl.cpp ¶
r33524 r33567 21 21 #include "Logging.h" 22 22 23 #include <VBox/ VBoxHDD.h>23 #include <VBox/vd.h> 24 24 25 25 #include <iprt/cpp/utils.h> -
TabularUnified trunk/src/VBox/Main/MediumImpl.cpp ¶
r33540 r33567 37 37 #include <iprt/cpp/utils.h> 38 38 39 #include <VBox/ VBoxHDD.h>39 #include <VBox/vd.h> 40 40 41 41 #include <algorithm> -
TabularUnified trunk/src/VBox/Main/SystemPropertiesImpl.cpp ¶
r33557 r33567 34 34 #include <VBox/param.h> 35 35 #include <VBox/settings.h> 36 #include <VBox/ VBoxHDD.h>36 #include <VBox/vd.h> 37 37 38 38 // defines -
TabularUnified trunk/src/VBox/Main/VirtualBoxImpl.cpp ¶
r33556 r33567 37 37 #include <VBox/err.h> 38 38 #include <VBox/param.h> 39 #include <VBox/VBoxHDD.h>40 39 #include <VBox/settings.h> 41 40 #include <VBox/version.h> -
TabularUnified trunk/src/VBox/Main/include/MediumImpl.h ¶
r33524 r33567 21 21 #define ____H_MEDIUMIMPL 22 22 23 #include <VBox/ VBoxHDD.h>23 #include <VBox/vd.h> 24 24 25 25 #include "VirtualBoxBase.h" -
TabularUnified trunk/src/VBox/Makefile.kmk ¶
r33380 r33567 55 55 include $(PATH_SUB_CURRENT)/Runtime/Makefile.kmk 56 56 include $(PATH_SUB_CURRENT)/Disassembler/Makefile.kmk 57 include $(PATH_SUB_CURRENT)/Storage/Makefile.kmk 57 58 if1of ($(KBUILD_TARGET_ARCH), amd64 x86) 58 59 include $(PATH_SUB_CURRENT)/VMM/Makefile.kmk -
TabularUnified trunk/src/VBox/Storage/DMG.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_DEFAULT /** @todo log group */ 22 #include <VBox/ VBoxHDD-Plugin.h>22 #include <VBox/vd-plugin.h> 23 23 #include <VBox/log.h> 24 24 #include <VBox/err.h> -
TabularUnified trunk/src/VBox/Storage/ISCSI.cpp ¶
r33554 r33567 21 21 *******************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_VD_ISCSI 23 #include <VBox/VBoxHDD-Plugin.h> 24 #define VBOX_VDICORE_VD /* Signal that the header is included from here. */ 25 #include "VDICore.h" 23 #include <VBox/vd-plugin.h> 26 24 #include <VBox/err.h> 27 25 -
TabularUnified trunk/src/VBox/Storage/Parallels.cpp ¶
r33554 r33567 18 18 19 19 #define LOG_GROUP LOG_GROUP_VD_PARALLELS 20 #include <VBox/ VBoxHDD-Plugin.h>20 #include <VBox/vd-plugin.h> 21 21 #include <VBox/err.h> 22 22 -
TabularUnified trunk/src/VBox/Storage/RAW.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_VD_RAW 22 #include <VBox/ VBoxHDD-Plugin.h>22 #include <VBox/vd-plugin.h> 23 23 #include <VBox/err.h> 24 24 -
TabularUnified trunk/src/VBox/Storage/VCICache.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_VD_RAW /** @todo logging group */ 22 #include <VBox/ VBoxHDD-CachePlugin.h>22 #include <VBox/vd-cache-plugin.h> 23 23 #include <VBox/err.h> 24 24 -
TabularUnified trunk/src/VBox/Storage/VD.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_VD 22 #include <VBox/ VBoxHDD.h>22 #include <VBox/vd.h> 23 23 #include <VBox/err.h> 24 24 #include <VBox/sup.h> … … 41 41 #include <iprt/avl.h> 42 42 43 #include <VBox/ VBoxHDD-Plugin.h>44 #include <VBox/ VBoxHDD-CachePlugin.h>43 #include <VBox/vd-plugin.h> 44 #include <VBox/vd-cache-plugin.h> 45 45 46 46 #define VBOXHDDDISK_SIGNATURE 0x6f0e2a7d … … 444 444 extern VBOXHDDBACKEND g_ParallelsBackend; 445 445 extern VBOXHDDBACKEND g_DmgBackend; 446 #ifdef VBOX_WITH_ISCSI447 446 extern VBOXHDDBACKEND g_ISCSIBackend; 448 #endif449 447 450 448 static unsigned g_cBackends = 0; … … 457 455 &g_ParallelsBackend, 458 456 &g_DmgBackend, 459 &g_RawBackend 460 #ifdef VBOX_WITH_ISCSI 461 ,&g_ISCSIBackend 462 #endif 457 &g_RawBackend, 458 &g_ISCSIBackend 463 459 }; 464 460 -
TabularUnified trunk/src/VBox/Storage/VDI.cpp ¶
r33554 r33567 19 19 *******************************************************************************/ 20 20 #define LOG_GROUP LOG_GROUP_VD_VDI 21 #include <VBox/ VBoxHDD-Plugin.h>21 #include <VBox/vd-plugin.h> 22 22 #define VBOX_VDICORE_VD /* Signal that the header is included from here. */ 23 23 #include "VDICore.h" -
TabularUnified trunk/src/VBox/Storage/VDICore.h ¶
r33554 r33567 22 22 * Header Files * 23 23 *******************************************************************************/ 24 #include <VBox/ VBoxHDD.h>24 #include <VBox/vd.h> 25 25 #ifndef VBOX_VDICORE_VD 26 26 #include <VBox/pdm.h> -
TabularUnified trunk/src/VBox/Storage/VHD.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_VD_VHD 22 #include <VBox/ VBoxHDD-Plugin.h>22 #include <VBox/vd-plugin.h> 23 23 #include <VBox/err.h> 24 24 -
TabularUnified trunk/src/VBox/Storage/VMDK.cpp ¶
r33554 r33567 20 20 *******************************************************************************/ 21 21 #define LOG_GROUP LOG_GROUP_VD_VMDK 22 #include <VBox/ VBoxHDD-Plugin.h>22 #include <VBox/vd-plugin.h> 23 23 #include <VBox/err.h> 24 24 … … 5621 5621 continue; 5622 5622 } 5623 uint64_t uLBA ;5623 uint64_t uLBA = 0; 5624 5624 uint32_t cbGrainStreamRead = 0; 5625 5625 rc = vmdkFileInflateSync(pImage, pExtent, -
TabularUnified trunk/src/VBox/Storage/testcase/Makefile.kmk ¶
r32782 r33567 63 63 tstVDSetUuid_LIBS = $(LIB_DDU) $(LIB_RUNTIME) 64 64 vbox-img_LIBS = \ 65 $(VBOX_LIB_RUNTIME_STATIC) 65 $(VBOX_LIB_RUNTIME_STATIC) \ 66 $(PATH_LIB)/StorageLibNoDB$(VBOX_SUFF_LIB) 66 67 if1of ($(KBUILD_TARGET),os2 win) 67 68 vbox-img_LIBS += \ … … 87 88 88 89 vbox-img_SOURCES = \ 89 vbox-img.cpp \ 90 $(VBOX_PATH_DEVICES_SRC)/Storage/VCICacheCore.cpp \ 91 $(VBOX_PATH_DEVICES_SRC)/Storage/VBoxHDD.cpp \ 92 $(VBOX_PATH_DEVICES_SRC)/Storage/RawHDDCore.cpp \ 93 $(VBOX_PATH_DEVICES_SRC)/Storage/VmdkHDDCore.cpp \ 94 $(VBOX_PATH_DEVICES_SRC)/Storage/VDIHDDCore.cpp \ 95 $(VBOX_PATH_DEVICES_SRC)/Storage/VHDHDDCore.cpp \ 96 $(VBOX_PATH_DEVICES_SRC)/Storage/ParallelsHDDCore.cpp \ 97 $(VBOX_PATH_DEVICES_SRC)/Storage/DMGHDDCore.cpp 98 vbox-img_DEFS += VBOX_HDD_NO_DYNAMIC_BACKENDS IN_VBOXDDU IN_VBOXDDU_STATIC IN_RT_R3 90 vbox-img.cpp 99 91 endif 100 92 -
TabularUnified trunk/src/VBox/Storage/testcase/tstVD-2.cpp ¶
r33524 r33567 17 17 18 18 #include <VBox/err.h> 19 #include <VBox/ VBoxHDD.h>19 #include <VBox/vd.h> 20 20 #include <iprt/string.h> 21 21 #include <iprt/stream.h> -
TabularUnified trunk/src/VBox/Storage/testcase/tstVD.cpp ¶
r33524 r33567 19 19 * Header Files * 20 20 *******************************************************************************/ 21 #include <VBox/ VBoxHDD.h>21 #include <VBox/vd.h> 22 22 #include <VBox/err.h> 23 23 #include <VBox/log.h> -
TabularUnified trunk/src/VBox/Storage/testcase/tstVDCopy.cpp ¶
r33540 r33567 18 18 19 19 #include <VBox/err.h> 20 #include <VBox/ VBoxHDD.h>20 #include <VBox/vd.h> 21 21 #include <iprt/string.h> 22 22 #include <iprt/stream.h> -
TabularUnified trunk/src/VBox/Storage/testcase/tstVDShareable.cpp ¶
r33524 r33567 19 19 * Header Files * 20 20 *******************************************************************************/ 21 #include <VBox/ VBoxHDD.h>21 #include <VBox/vd.h> 22 22 #include <VBox/err.h> 23 23 #include <VBox/log.h> -
TabularUnified trunk/src/VBox/Storage/testcase/tstVDSnap.cpp ¶
r33524 r33567 16 16 */ 17 17 18 #include <VBox/ VBoxHDD.h>18 #include <VBox/vd.h> 19 19 #include <VBox/err.h> 20 20 #include <VBox/log.h> -
TabularUnified trunk/src/VBox/Storage/testcase/vbox-img.cpp ¶
r33524 r33567 19 19 * Header Files * 20 20 *******************************************************************************/ 21 #include <VBox/ VBoxHDD.h>21 #include <VBox/vd.h> 22 22 #include <VBox/err.h> 23 23 #include <VBox/version.h> -
TabularUnified trunk/src/VBox/Storage/testcase/vditool.cpp ¶
r33524 r33567 19 19 * Header Files * 20 20 *******************************************************************************/ 21 #include <VBox/ VBoxHDD.h>21 #include <VBox/vd.h> 22 22 #include <iprt/alloc.h> 23 23 #include <iprt/file.h>
Note:
See TracChangeset
for help on using the changeset viewer.