Changeset 21801 in vbox
- Timestamp:
- Jul 26, 2009 5:45:31 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/iprt/file.h (modified) (4 diffs)
-
src/VBox/Runtime/generic/RTFileReadAllByHandleEx-generic.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r21616 r21801 722 722 * @param pszFilename The name of the file. 723 723 * @param ppvFile Where to store the pointer to the memory on successful return. 724 * @param pcbFile Where to store the size of the file on successful return.724 * @param pcbFile Where to store the size of the returned memory. 725 725 * 726 726 * @remarks Note that this function may be implemented using memory mapping, which means … … 745 745 * @param fFlags See RTFILE_RDALL_*. 746 746 * @param ppvFile Where to store the pointer to the memory on successful return. 747 * @param pcbFile Where to store the size of the file on successful return.747 * @param pcbFile Where to store the size of the returned memory. 748 748 * 749 749 * @remarks See the remarks for RTFileReadAll. … … 759 759 * @param File The handle to the file. 760 760 * @param ppvFile Where to store the pointer to the memory on successful return. 761 * @param pcbFile Where to store the size of the file on successful return.761 * @param pcbFile Where to store the size of the returned memory. 762 762 * 763 763 * @remarks See the remarks for RTFileReadAll. … … 777 777 * @param fFlags See RTFILE_RDALL_*. 778 778 * @param ppvFile Where to store the pointer to the memory on successful return. 779 * @param pcbFile Where to store the size of the file on successful return.779 * @param pcbFile Where to store the size of the returned memory. 780 780 * 781 781 * @remarks See the remarks for RTFileReadAll. -
trunk/src/VBox/Runtime/generic/RTFileReadAllByHandleEx-generic.cpp
r21337 r21801 89 89 */ 90 90 *ppvFile = pvFile; 91 *pcbFile = cbAlloc File;91 *pcbFile = cbAllocMem; 92 92 } 93 93 }
Note:
See TracChangeset
for help on using the changeset viewer.

