Changeset 69679 in vbox
- Timestamp:
- Nov 13, 2017 3:53:01 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/vfs.h
r69677 r69679 492 492 * 493 493 * @returns IPRT status code. 494 * @param hDir The standard IPRT directory handle.494 * @param pszPath The path to the directory. 495 495 * @param fFlags RTDIR_F_XXX. 496 496 * @param phVfsDir Where to return the VFS directory handle. 497 497 */ 498 RTDECL(int) RTVfsDirOpenNormal(const char *psz Filename, uint32_t fFlags, PRTVFSDIR phVfsDir);498 RTDECL(int) RTVfsDirOpenNormal(const char *pszPath, uint32_t fFlags, PRTVFSDIR phVfsDir); 499 499 500 500 /** -
trunk/src/VBox/Runtime/common/vfs/vfsstddir.cpp
r69674 r69679 569 569 570 570 571 RTDECL(int) RTVfsDirOpenNormal(const char *psz Filename, uint32_t fFlags, PRTVFSDIR phVfsDir)571 RTDECL(int) RTVfsDirOpenNormal(const char *pszPath, uint32_t fFlags, PRTVFSDIR phVfsDir) 572 572 { 573 573 /* … … 575 575 */ 576 576 PRTDIR hDir; 577 int rc = RTDirOpenFiltered(&hDir, psz Filename, RTDIRFILTER_NONE, fFlags);577 int rc = RTDirOpenFiltered(&hDir, pszPath, RTDIRFILTER_NONE, fFlags); 578 578 if (RT_SUCCESS(rc)) 579 579 {
Note:
See TracChangeset
for help on using the changeset viewer.