Changeset 67455 in vbox
- Timestamp:
- Jun 16, 2017 8:25:22 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-image-backend.h
r66486 r67455 329 329 * Get the image flags of a disk image. 330 330 * 331 * @returns image flags of disk image .331 * @returns image flags of disk image (VD_IMAGE_FLAGS_XXX). 332 332 * @param pBackendData Opaque state data for this image. 333 333 */ … … 337 337 * Get the open flags of a disk image. 338 338 * 339 * @returns open flags of disk image .339 * @returns open flags of disk image (VD_OPEN_FLAGS_XXX). 340 340 * @param pBackendData Opaque state data for this image. 341 341 */ … … 343 343 344 344 /** 345 * Set the open flags of a disk image. May cause the image to be locked 346 * in a different mode or be reopened (which can fail). 347 * 348 * @returns VBox status code. 349 * @param pBackendData Opaque state data for this image. 350 * @param uOpenFlags New open flags for this image. 345 * Set the open flags of a disk image. 346 * 347 * May cause the image to be locked in a different mode or be reopened (which 348 * can fail). 349 * 350 * @returns VBox status code. 351 * @param pBackendData Opaque state data for this image. 352 * @param uOpenFlags New open flags for this image (VD_OPEN_FLAGS_XXX). 351 353 */ 352 354 DECLR3CALLBACKMEMBER(int, pfnSetOpenFlags, (void *pBackendData, unsigned uOpenFlags)); -
trunk/src/VBox/Storage/Makefile.kmk
r66378 r67455 53 53 VHDX.cpp \ 54 54 CUE.cpp \ 55 VISO.cpp \ 55 56 VCICache.cpp 56 57 endif -
trunk/src/VBox/Storage/VDBackends.h
r66378 r67455 39 39 extern const VDIMAGEBACKEND g_VhdxBackend; 40 40 extern const VDIMAGEBACKEND g_CueBackend; 41 extern const VDIMAGEBACKEND g_VBoxIsoMakerBackend; 41 42 42 43 extern const VDCACHEBACKEND g_VciCacheBackend; -
trunk/src/VBox/Storage/VDPlugin.cpp
r66380 r67455 85 85 &g_RawBackend, 86 86 &g_CueBackend, 87 &g_VBoxIsoMakerBackend, 87 88 &g_ISCSIBackend 88 89 }; -
trunk/src/VBox/Storage/testcase/Makefile.kmk
r66378 r67455 134 134 ../VHDX.cpp \ 135 135 ../CUE.cpp \ 136 ../VISO.cpp \ 136 137 ../VCICache.cpp \ 137 138 ../VDIfVfs.cpp
Note:
See TracChangeset
for help on using the changeset viewer.