Changeset 24889 in vbox for trunk/include/iprt
- Timestamp:
- Nov 24, 2009 11:09:45 AM (15 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r24189 r24889 643 643 * 644 644 * @returns iprt status code. 645 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS. 645 * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by 646 * the OS. 646 647 * 647 648 * @param File Handle to the file. … … 744 745 */ 745 746 RTR3DECL(int) RTFileIoCtl(RTFILE File, int iRequest, void *pvData, unsigned cbData, int *piRet); 747 748 /** 749 * Query the sizes of a filesystem. 750 * 751 * @returns iprt status code. 752 * @retval VERR_NOT_SUPPORTED is returned if the operation isn't supported by 753 * the OS. 754 * 755 * @param hFile The file handle. 756 * @param pcbTotal Where to store the total filesystem space. (Optional) 757 * @param pcbFree Where to store the remaining free space in the filesystem. (Optional) 758 * @param pcbBlock Where to store the block size. (Optional) 759 * @param pcbSector Where to store the sector size. (Optional) 760 * 761 * @sa RTFsQuerySizes 762 */ 763 RTR3DECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree, 764 uint32_t *pcbBlock, uint32_t *pcbSector); 746 765 747 766 /** -
trunk/include/iprt/fs.h
r20374 r24889 341 341 * @param pcbBlock Where to store the block size. (Optional) 342 342 * @param pcbSector Where to store the sector size. (Optional) 343 * 344 * @sa RTFileQueryFsSizes 343 345 */ 344 346 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, PRTFOFF pcbTotal, RTFOFF *pcbFree,
Note:
See TracChangeset
for help on using the changeset viewer.