Changeset 25292 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Dec 10, 2009 10:29:57 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55839
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/dir-win.cpp
r23298 r25292 310 310 311 311 312 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs) 313 { 312 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) 313 { 314 /** @todo Symlinks: Find[First|Next]FileW will return info about 315 the link, so RTPATH_F_FOLLOW_LINK is not handled correctly. */ 314 316 /* 315 317 * Validate input. … … 331 333 return VERR_INVALID_PARAMETER; 332 334 } 335 AssertMsgReturn(RTPATH_F_IS_VALID(fFlags, 0), ("%#x\n", fFlags), VERR_INVALID_PARAMETER); 333 336 size_t cbDirEntry = sizeof(*pDirEntry); 334 337 if (pcbDirEntry)
Note:
See TracChangeset
for help on using the changeset viewer.