Changeset 69844 in vbox for trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
- Timestamp:
- Nov 27, 2017 3:44:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
r69829 r69844 1071 1071 1072 1072 /** 1073 * @interface_method_impl{RTVFSOPS,pfn IsRangeInUse}1074 */ 1075 static DECLCALLBACK(int) rtDvmVfsVol_ IsRangeInUse(void *pvThis, RTFOFFoff, size_t cb, bool *pfUsed)1073 * @interface_method_impl{RTVFSOPS,pfnQueryRangeState} 1074 */ 1075 static DECLCALLBACK(int) rtDvmVfsVol_QueryRangeState(void *pvThis, uint64_t off, size_t cb, bool *pfUsed) 1076 1076 { 1077 1077 RT_NOREF(pvThis, off, cb, pfUsed); … … 1093 1093 0 /* fFeatures */, 1094 1094 rtDvmVfsVol_OpenRoot, 1095 rtDvmVfsVol_ IsRangeInUse,1095 rtDvmVfsVol_QueryRangeState, 1096 1096 RTVFSOPS_VERSION 1097 1097 };
Note:
See TracChangeset
for help on using the changeset viewer.