Changeset 6429 in vbox for trunk/include/iprt
- Timestamp:
- Jan 21, 2008 10:22:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r6421 r6429 266 266 267 267 /** 268 * Determine the maximum file size depending on the file system the file is stored on. 269 */ 270 RTR3DECL(uint64_t) RTFileGetMaxSize(RTFILE File); 268 * Determine the maximum file size. 269 * 270 * @returns The max size of the file. 271 * -1 on failure, the file position is undefined. 272 * @param File Handle to the file. 273 * @see RTFileGetMaxSizeEx. 274 */ 275 RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File); 276 277 /** 278 * Determine the maximum file size. 279 * 280 * @returns IPRT status code. 281 * @param File Handle to the file. 282 * @param pcbMax Where to store the max file size. 283 * @see RTFileGetMaxSize. 284 */ 285 RTR3DECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax); 286 287 /** 288 * Determine the maximum file size depending on the file system the file is stored on. 289 * 290 * @returns The max size of the file. 291 * -1 on failure. 292 * @param File Handle to the file. 293 */ 294 RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File); 271 295 272 296 /**
Note:
See TracChangeset
for help on using the changeset viewer.