Changeset 66140 in vbox
- Timestamp:
- Mar 16, 2017 5:29:31 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114046
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r65220 r66140 760 760 /** Generic virtual disk layer. */ 761 761 LOG_GROUP_VD, 762 /** CUE/BIN virtual disk backend. */ 763 LOG_GROUP_VD_CUE, 762 764 /** DMG virtual disk backend. */ 763 765 LOG_GROUP_VD_DMG, … … 1163 1165 "VBGL", \ 1164 1166 "VD", \ 1167 "VD_CUE", \ 1165 1168 "VD_DMG", \ 1166 1169 "VD_ISCSI", \ -
trunk/src/VBox/Storage/Makefile.kmk
r66125 r66140 51 51 QCOW.cpp \ 52 52 VHDX.cpp \ 53 CUE.cpp \ 53 54 VCICache.cpp 54 55 endif -
trunk/src/VBox/Storage/VD.cpp
r66110 r66140 640 640 &g_VhdxBackend, 641 641 &g_RawBackend, 642 &g_CueBackend, 642 643 &g_ISCSIBackend 643 644 }; -
trunk/src/VBox/Storage/VDBackends.h
r63781 r66140 36 36 extern const VDIMAGEBACKEND g_QCowBackend; 37 37 extern const VDIMAGEBACKEND g_VhdxBackend; 38 extern const VDIMAGEBACKEND g_CueBackend; 38 39 39 40 extern const VDCACHEBACKEND g_VciCacheBackend; -
trunk/src/VBox/Storage/testcase/Makefile.kmk
r63499 r66140 132 132 ../QCOW.cpp \ 133 133 ../VHDX.cpp \ 134 ../CUE.cpp \ 134 135 ../VCICache.cpp \ 135 136 ../VDIfVfs.cpp
Note:
See TracChangeset
for help on using the changeset viewer.