Changeset 6992 in vbox for trunk/include
- Timestamp:
- Feb 18, 2008 1:34:17 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28187
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r6984 r6992 94 94 #define RTFILE_O_ACTION_MASK 0x00000300 95 95 96 /** Turns off indexing of files on Windows hosts .96 /** Turns off indexing of files on Windows hosts, *CREATE* only. 97 97 * @remark This might not be implemented on all platforms, 98 98 * and will be ignored on those. … … 270 270 271 271 /** 272 * Determine the maximum file size. 273 * 274 * @returns The max size of the file. 272 * Determine the maximum file size. 273 * 274 * @returns The max size of the file. 275 275 * -1 on failure, the file position is undefined. 276 * @param File Handle to the file. 277 * @see RTFileGetMaxSizeEx. 276 * @param File Handle to the file. 277 * @see RTFileGetMaxSizeEx. 278 278 */ 279 279 RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File); 280 280 281 281 /** 282 * Determine the maximum file size. 283 * 282 * Determine the maximum file size. 283 * 284 284 * @returns IPRT status code. 285 * @param File Handle to the file. 286 * @param pcbMax Where to store the max file size. 285 * @param File Handle to the file. 286 * @param pcbMax Where to store the max file size. 287 287 * @see RTFileGetMaxSize. 288 288 */ … … 290 290 291 291 /** 292 * Determine the maximum file size depending on the file system the file is stored on. 293 * 294 * @returns The max size of the file. 292 * Determine the maximum file size depending on the file system the file is stored on. 293 * 294 * @returns The max size of the file. 295 295 * -1 on failure. 296 * @param File Handle to the file. 296 * @param File Handle to the file. 297 297 */ 298 298 RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
Note:
See TracChangeset
for help on using the changeset viewer.