Changeset 14059 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Nov 10, 2008 11:05:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dir.h
r9355 r14059 70 70 const char *pszFilter; 71 71 /** The length of the filter string. */ 72 unsignedcchFilter;72 size_t cchFilter; 73 73 /** Normalized path to the directory including a trailing slash. 74 74 * We keep this around so we can query more information if required (posix). … … 76 76 const char *pszPath; 77 77 /** The length of the path. */ 78 unsignedcchPath;78 size_t cchPath; 79 79 /** Set to indicate that the Data member contains unread data. */ 80 80 bool fDataUnread; … … 84 84 char *pszName; 85 85 /** The length of the converted filename. */ 86 unsignedcchName;86 size_t cchName; 87 87 #endif 88 88
Note:
See TracChangeset
for help on using the changeset viewer.