Changeset 54835 in vbox for trunk/include/VBox
- Timestamp:
- Mar 18, 2015 3:44:17 PM (10 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd-filter-backend.h
r50991 r54835 58 58 * @returns VBox status code. 59 59 * @param pVDIfsDisk Pointer to the per-disk VD interface list. 60 * @param fFlags Subset of VD_FILTER_FLAGS_*. 60 61 * @param pVDIfsFilter Pointer to the per-filter VD interface list. 61 62 * @param ppvBackendData Opaque state data for this filter instance. 62 63 */ 63 DECLR3CALLBACKMEMBER(int, pfnCreate, (PVDINTERFACE pVDIfsDisk, 64 DECLR3CALLBACKMEMBER(int, pfnCreate, (PVDINTERFACE pVDIfsDisk, uint32_t fFlags, 64 65 PVDINTERFACE pVDIfsFilter, 65 66 void **ppvBackendData)); -
trunk/include/VBox/vd.h
r54624 r54835 249 249 /** The filter is applied during reads. */ 250 250 #define VD_FILTER_FLAGS_READ RT_BIT(1) 251 /** Open the filter in info mode. */ 252 #define VD_FILTER_FLAGS_INFO RT_BIT(2) 251 253 /** Default set of filter flags. */ 252 254 #define VD_FILTER_FLAGS_DEFAULT (VD_FILTER_FLAGS_WRITE | VD_FILTER_FLAGS_READ) 253 255 /** Mask of valid flags. */ 254 #define VD_FILTER_FLAGS_MASK (VD_FILTER_FLAGS_WRITE | VD_FILTER_FLAGS_READ )256 #define VD_FILTER_FLAGS_MASK (VD_FILTER_FLAGS_WRITE | VD_FILTER_FLAGS_READ | VD_FILTER_FLAGS_INFO) 255 257 /** @} */ 256 258
Note:
See TracChangeset
for help on using the changeset viewer.