VirtualBox

Ignore:
Timestamp:
Nov 23, 2017 7:44:07 PM (7 years ago)
Author:
vboxsync
Message:

IPRT/VFS: Got rid of the pfnTraversalOpen method.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dvm/dvmvfs.cpp

    r69813 r69818  
    648648
    649649
    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 
    669650static int rtDvmVfsDir_FindEntry(PRTDVMVFSDIR pThis, const char *pszEntry, PRTDVMVOLUME phVolume)
    670651{
     
    1014995    },
    1015996    rtDvmVfsDir_Open,
    1016     rtDvmVfsDir_TraversalOpen,
    1017997    rtDvmVfsDir_OpenFile,
    1018998    rtDvmVfsDir_OpenDir,
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette