Changeset 67221 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 1, 2017 9:44:24 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r67186 r67221 613 613 common/vfs/vfsmisc.cpp \ 614 614 common/vfs/vfsmsg.cpp \ 615 common/vfs/vfsprogress.cpp \ 615 616 common/vfs/vfsreadahead.cpp \ 616 617 common/vfs/vfsstdfile.cpp \ -
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r67189 r67221 3084 3084 3085 3085 3086 RTDECL(uint64_t) RTVfsIoStrmGetOpenFlags(RTVFSIOSTREAM hVfsIos) 3087 { 3088 RTVFSIOSTREAMINTERNAL *pThis = hVfsIos; 3089 AssertPtrReturn(pThis, 0); 3090 AssertReturn(pThis->uMagic == RTVFSIOSTREAM_MAGIC, 0); 3091 return pThis->fFlags; 3092 } 3086 3093 3087 3094 … … 3405 3412 return rc; 3406 3413 } 3414 3415 3416 RTDECL(uint64_t) RTVfsFileGetOpenFlags(RTVFSFILE hVfsFile) 3417 { 3418 RTVFSFILEINTERNAL *pThis = hVfsFile; 3419 AssertPtrReturn(pThis, 0); 3420 AssertReturn(pThis->uMagic == RTVFSFILE_MAGIC, 0); 3421 return pThis->Stream.fFlags; 3422 } 3423
Note:
See TracChangeset
for help on using the changeset viewer.