Changeset 41576 in vbox
- Timestamp:
- Jun 5, 2012 12:08:04 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r40258 r41576 33 33 #include <iprt/net.h> 34 34 #include <iprt/sg.h> 35 #include <iprt/vfs.h> 35 36 #include <VBox/cdefs.h> 36 37 #include <VBox/types.h> … … 113 114 /** Mask of all valid repair flags. */ 114 115 #define VD_REPAIR_FLAGS_MASK (VD_REPAIR_DRY_RUN) 116 /** @} */ 117 118 /** @name VD image VFS file flags 119 * @{ 120 */ 121 /** Destroy the VD disk container when the VFS file is released. */ 122 #define VD_VFSFILE_DESTROY_ON_RELEASE RT_BIT_32(0) 123 124 /** Mask of all valid repair flags. */ 125 #define VD_VFSFILE_FLAGS_MASK (VD_VFSFILE_DESTROY_ON_RELEASE) 115 126 /** @} */ 116 127 … … 1202 1213 uint32_t fFlags); 1203 1214 1215 /** 1216 * Create a VFS file handle from the given HDD container. 1217 * 1218 * @return VBox status code. 1219 * @param pDisk Pointer to HDD container. 1220 * @param fFlags Combination of the VD_VFSFILE_* flags. 1221 * @param phVfsFile Where to stoer the handle to the VFS file on success. 1222 */ 1223 VBOXDDU_DECL(int) VDCreateVfsFileFromDisk(PVBOXHDD pDisk, uint32_t fFlags, 1224 PRTVFSFILE phVfsFile); 1225 1204 1226 RT_C_DECLS_END 1205 1227 -
trunk/src/VBox/Storage/Makefile.kmk
r41477 r41576 37 37 StorageLib_SOURCES = \ 38 38 VD.cpp \ 39 VDVfs.cpp \ 39 40 VDI.cpp \ 40 41 VMDK.cpp \ -
trunk/src/VBox/Storage/testcase/Makefile.kmk
r41477 r41576 80 80 vbox-img.cpp \ 81 81 $(VBOX_PATH_STORAGE_SRC)/VD.cpp \ 82 $(VBOX_PATH_STORAGE_SRC)/VDVfs.cpp \ 82 83 $(VBOX_PATH_STORAGE_SRC)/VDI.cpp \ 83 84 $(VBOX_PATH_STORAGE_SRC)/VMDK.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.