Changeset 77047 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Jan 30, 2019 3:38:53 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128490
- Location:
- trunk/src/VBox/Runtime/common/vfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r76553 r77047 2519 2519 2520 2520 2521 RTDECL(void *) RTVfsDirToPrivate(RTVFSDIR hVfsDir, PCRTVFSDIROPS pDirOps) 2522 { 2523 RTVFSDIRINTERNAL *pThis = hVfsDir; 2524 AssertPtrReturn(pThis, NULL); 2525 AssertReturn(pThis->uMagic == RTVFSDIR_MAGIC, NULL); 2526 if (pThis->pOps != pDirOps) 2527 return NULL; 2528 return pThis->Base.pvThis; 2529 } 2530 2531 2521 2532 #ifdef DEBUG 2522 2533 # undef RTVfsDirRetain -
trunk/src/VBox/Runtime/common/vfs/vfsstddir.cpp
r76553 r77047 753 753 754 754 755 RTDECL(bool) RTVfsDirIsStdDir(RTVFSDIR hVfsDir) 756 { 757 return RTVfsDirToPrivate(hVfsDir, &g_rtVfsStdDirOps) != NULL; 758 } 759 760 755 761 /** 756 762 * @interface_method_impl{RTVFSCHAINELEMENTREG,pfnValidate}
Note:
See TracChangeset
for help on using the changeset viewer.