Changeset 13104 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Oct 8, 2008 11:38:46 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37598
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/dir-win.cpp
r8245 r13104 325 325 */ 326 326 pDir->fDataUnread = false; 327 pDirEntry->INodeId = 0; 327 pDirEntry->INodeId = 0; /** @todo we can use the fileid here if we must (see GetFileInformationByHandle). */ 328 328 pDirEntry->enmType = pDir->Data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY 329 329 ? RTDIRENTRYTYPE_DIRECTORY : RTDIRENTRYTYPE_FILE; … … 479 479 pDirEntry->Info.Attr.u.Unix.gid = ~0U; 480 480 pDirEntry->Info.Attr.u.Unix.cHardlinks = 1; 481 pDirEntry->Info.Attr.u.Unix.INodeIdDevice = 0; 482 pDirEntry->Info.Attr.u.Unix.INodeId = 0; 481 pDirEntry->Info.Attr.u.Unix.INodeIdDevice = 0; /** @todo Use the volume serial number (see GetFileInformationByHandle). */ 482 pDirEntry->Info.Attr.u.Unix.INodeId = 0; /** @todo Use the fileid (see GetFileInformationByHandle). */ 483 483 pDirEntry->Info.Attr.u.Unix.fFlags = 0; 484 484 pDirEntry->Info.Attr.u.Unix.GenerationId = 0; -
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r8913 r13104 668 668 pObjInfo->Attr.u.Unix.gid = ~0U; 669 669 pObjInfo->Attr.u.Unix.cHardlinks = Data.nNumberOfLinks ? Data.nNumberOfLinks : 1; 670 pObjInfo->Attr.u.Unix.INodeIdDevice = 0; 671 pObjInfo->Attr.u.Unix.INodeId = 0; 670 pObjInfo->Attr.u.Unix.INodeIdDevice = 0; /** @todo Use the volume serial number (see GetFileInformationByHandle). */ 671 pObjInfo->Attr.u.Unix.INodeId = 0; /** @todo Use the fileid (see GetFileInformationByHandle). */ 672 672 pObjInfo->Attr.u.Unix.fFlags = 0; 673 673 pObjInfo->Attr.u.Unix.GenerationId = 0; -
trunk/src/VBox/Runtime/r3/win/path-win.cpp
r11836 r13104 238 238 pObjInfo->Attr.u.Unix.gid = ~0U; 239 239 pObjInfo->Attr.u.Unix.cHardlinks = 1; 240 pObjInfo->Attr.u.Unix.INodeIdDevice = 0; 241 pObjInfo->Attr.u.Unix.INodeId = 0; 240 pObjInfo->Attr.u.Unix.INodeIdDevice = 0; /** @todo use volume serial number */ 241 pObjInfo->Attr.u.Unix.INodeId = 0; /** @todo use fileid (see GetFileInformationByHandle). */ 242 242 pObjInfo->Attr.u.Unix.fFlags = 0; 243 243 pObjInfo->Attr.u.Unix.GenerationId = 0;
Note:
See TracChangeset
for help on using the changeset viewer.