Changeset 67180 in vbox for trunk/include
- Timestamp:
- May 31, 2017 7:39:10 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115857
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r67166 r67180 2376 2376 # define RTVfsLockRetainDebug RT_MANGLER(RTVfsLockRetainDebug) 2377 2377 # define RTVfsMemFileCreate RT_MANGLER(RTVfsMemFileCreate) 2378 # define RTVfsMemIoStrmCreate RT_MANGLER(RTVfsMemIoStrmCreate) 2378 2379 # define RTVfsMemorizeIoStreamAsFile RT_MANGLER(RTVfsMemorizeIoStreamAsFile) 2379 2380 # define RTVfsNew RT_MANGLER(RTVfsNew) -
trunk/include/iprt/vfs.h
r67149 r67180 1216 1216 RTDECL(int) RTVfsMemorizeIoStreamAsFile(RTVFSIOSTREAM hVfsIos, uint32_t fFlags, PRTVFSFILE phVfsFile); 1217 1217 1218 1219 1218 /** 1220 1219 * Creates a VFS file from a memory buffer. … … 1242 1241 * @param phVfsFile Where to return the handle to the memory file on 1243 1242 * success. 1243 * @sa RTVfsMemIoStrmCreate 1244 1244 */ 1245 1245 RTDECL(int) RTVfsMemFileCreate(RTVFSIOSTREAM hVfsIos, size_t cbEstimate, PRTVFSFILE phVfsFile); 1246 1247 /** 1248 * Creates a memory backed VFS file object for read and write. 1249 * 1250 * @returns IPRT status code. 1251 * 1252 * @param hVfsIos The VFS I/O stream to memorize. This will be read 1253 * to the end on success, on failure its position is 1254 * undefined. 1255 * @param cbEstimate The estimated file size. 1256 * @param phVfsIos Where to return the handle to the memory I/O stream 1257 * on success. 1258 * @sa RTVfsMemFileCreate 1259 */ 1260 RTDECL(int) RTVfsMemIoStrmCreate(RTVFSIOSTREAM hVfsIos, size_t cbEstimate, PRTVFSIOSTREAM phVfsIos); 1246 1261 1247 1262 /**
Note:
See TracChangeset
for help on using the changeset viewer.