Changeset 69753 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/direnum-win.cpp
r69691 r69753 47 47 { 48 48 NOREF(pszPath); 49 return sizeof(RTDIR );50 } 51 52 53 int rtDirNativeOpen(PRTDIR pDir, char *pszPathBuf, uintptr_t hRelativeDir, void *pvNativeRelative))49 return sizeof(RTDIRINTERNAL); 50 } 51 52 53 int rtDirNativeOpen(PRTDIRINTERNAL pDir, char *pszPathBuf, uintptr_t hRelativeDir, void *pvNativeRelative)) 54 54 { 55 55 RT_NOREF(hRelativeDir, pvNativeRelative); … … 107 107 108 108 109 RTDECL(int) RTDirClose(PRTDIR pDir)109 RTDECL(int) RTDirClose(PRTDIRINTERNAL pDir) 110 110 { 111 111 /* … … 138 138 139 139 140 RTDECL(int) RTDirRead(PRTDIR pDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry) 141 { 140 RTDECL(int) RTDirRead(RTDIR hDir, PRTDIRENTRY pDirEntry, size_t *pcbDirEntry) 141 { 142 PPRTDIRINTERNAL pDir = hDir; 143 142 144 /* 143 145 * Validate input. … … 222 224 223 225 224 RTDECL(int) RTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) 225 { 226 RTDECL(int) RTDirReadEx(RTDIR hDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) 227 { 228 PPRTDIRINTERNAL pDir = hDir; 226 229 /** @todo Symlinks: Find[First|Next]FileW will return info about 227 230 the link, so RTPATH_F_FOLLOW_LINK is not handled correctly. */
Note:
See TracChangeset
for help on using the changeset viewer.