Changeset 69818 in vbox for trunk/src/VBox/Runtime/common/dvm
- Timestamp:
- Nov 23, 2017 7:44:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp
r69813 r69818 648 648 649 649 650 /**651 * @interface_method_impl{RTVFSOBJOPS,pfnTraversalOpen}652 */653 static DECLCALLBACK(int) rtDvmVfsDir_TraversalOpen(void *pvThis, const char *pszEntry, PRTVFSDIR phVfsDir,654 PRTVFSSYMLINK phVfsSymlink, PRTVFS phVfsMounted)655 {656 RT_NOREF(pvThis, pszEntry);657 658 /* We don't do any subdirs. */659 if (phVfsSymlink)660 *phVfsSymlink = NIL_RTVFSSYMLINK;661 if (phVfsMounted)662 *phVfsMounted = NIL_RTVFS;663 if (phVfsDir)664 *phVfsDir = NIL_RTVFSDIR;665 return VERR_PATH_NOT_FOUND;666 }667 668 669 650 static int rtDvmVfsDir_FindEntry(PRTDVMVFSDIR pThis, const char *pszEntry, PRTDVMVOLUME phVolume) 670 651 { … … 1014 995 }, 1015 996 rtDvmVfsDir_Open, 1016 rtDvmVfsDir_TraversalOpen,1017 997 rtDvmVfsDir_OpenFile, 1018 998 rtDvmVfsDir_OpenDir,
Note:
See TracChangeset
for help on using the changeset viewer.