Changeset 80585 in vbox for trunk/include
- Timestamp:
- Sep 4, 2019 2:05:50 PM (5 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r79200 r80585 94 94 * @param pcbFile Where to return the file size (bytes). 95 95 * 96 * @sa RTFile GetSize, RTPathQueryInfoEx.97 */ 98 RTDECL(int) RTFileQuerySize (const char *pszPath, uint64_t *pcbFile);96 * @sa RTFileQuerySize, RTPathQueryInfoEx. 97 */ 98 RTDECL(int) RTFileQuerySizeByPath(const char *pszPath, uint64_t *pcbFile); 99 99 100 100 … … 560 560 * @param pcbSize Where to store the filesize. 561 561 */ 562 RTDECL(int) RTFile GetSize(RTFILE File, uint64_t *pcbSize);562 RTDECL(int) RTFileQuerySize(RTFILE File, uint64_t *pcbSize); 563 563 564 564 /** … … 568 568 * -1 on failure, the file position is undefined. 569 569 * @param File Handle to the file. 570 * @see RTFile GetMaxSizeEx.570 * @see RTFileQueryMaxSizeEx. 571 571 */ 572 572 RTDECL(RTFOFF) RTFileGetMaxSize(RTFILE File); … … 580 580 * @see RTFileGetMaxSize. 581 581 */ 582 RTDECL(int) RTFile GetMaxSizeEx(RTFILE File, PRTFOFF pcbMax);582 RTDECL(int) RTFileQueryMaxSizeEx(RTFILE File, PRTFOFF pcbMax); 583 583 584 584 /** -
trunk/include/iprt/mangling.h
r80518 r80585 932 932 # define RTFileFromNative RT_MANGLER(RTFileFromNative) 933 933 # define RTFileGetMaxSize RT_MANGLER(RTFileGetMaxSize) 934 # define RTFile GetMaxSizeEx RT_MANGLER(RTFileGetMaxSizeEx)935 # define RTFile GetSize RT_MANGLER(RTFileGetSize)934 # define RTFileQueryMaxSizeEx RT_MANGLER(RTFileQueryMaxSizeEx) 935 # define RTFileQuerySizeByPath RT_MANGLER(RTFileQuerySizeByPath) 936 936 # define RTFileIoCtl RT_MANGLER(RTFileIoCtl) 937 937 # define RTFileIsValid RT_MANGLER(RTFileIsValid) … … 2640 2640 # define RTVfsFileFromRTFile RT_MANGLER(RTVfsFileFromRTFile) 2641 2641 # define RTVfsFileGetOpenFlags RT_MANGLER(RTVfsFileGetOpenFlags) 2642 # define RTVfsFile GetSize RT_MANGLER(RTVfsFileGetSize)2642 # define RTVfsFileQuerySize RT_MANGLER(RTVfsFileQuerySize) 2643 2643 # define RTVfsFileGetMaxSize RT_MANGLER(RTVfsFileGetMaxSize) 2644 2644 # define RTVfsFileOpen RT_MANGLER(RTVfsFileOpen) -
trunk/include/iprt/vfs.h
r80518 r80585 1475 1475 1476 1476 1477 RTDECL(int) RTVfsFile GetSize(RTVFSFILE hVfsFile, uint64_t *pcbSize);1477 RTDECL(int) RTVfsFileQuerySize(RTVFSFILE hVfsFile, uint64_t *pcbSize); 1478 1478 RTDECL(RTFOFF) RTVfsFileGetMaxSize(RTVFSFILE hVfsFile); 1479 1479 RTDECL(int) RTVfsFileQueryMaxSize(RTVFSFILE hVfsFile, uint64_t *pcbMax); -
trunk/include/iprt/vfslowlevel.h
r77047 r80585 1023 1023 * @param pvThis The implementation specific file data. 1024 1024 * @param pcbFile Where to store the current file size. 1025 * @sa RTFile GetSize1025 * @sa RTFileQuerySize 1026 1026 */ 1027 1027 DECLCALLBACKMEMBER(int, pfnQuerySize)(void *pvThis, uint64_t *pcbFile); … … 1057 1057 * @param pcbMax Where to return the max file size. 1058 1058 * @note Optional. If NULL, VERR_NOT_IMPLEMENTED will be returned. 1059 * @sa RTFile GetMaxSizeEx1059 * @sa RTFileQueryMaxSizeEx 1060 1060 */ 1061 1061 DECLCALLBACKMEMBER(int, pfnQueryMaxSize)(void *pvThis, uint64_t *pcbMax);
Note:
See TracChangeset
for help on using the changeset viewer.