VirtualBox

Changeset 57944 in vbox for trunk/include/iprt/vfs.h


Ignore:
Timestamp:
Sep 29, 2015 3:07:09 PM (9 years ago)
Author:
vboxsync
Message:

iprt: More doxygen corrections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/vfs.h

    r57643 r57944  
    227227 *
    228228 * @returns Referenced handle on success, NIL if the input handle was invalid.
    229  * @param   hVfsFSs         The VFS filesystem stream handle.
     229 * @param   hVfsFss         The VFS filesystem stream handle.
    230230 */
    231231RTDECL(RTVFSOBJ)        RTVfsObjFromFsStream(RTVFSFSSTREAM hVfsFss);
     
    298298 * @retval  VERR_EOF when there are no more objects.
    299299 *
    300  * @param   pvThis      The implementation specific directory data.
     300 * @param   hVfsFss     The file system stream handle.
    301301 * @param   ppszName    Where to return the object name.  Must be freed by
    302302 *                      calling RTStrFree.
    303303 * @param   penmType    Where to return the object type.
    304  * @param   hVfsObj     Where to return the object handle (referenced).
    305  *                      This must be cast to the desired type before use.
     304 * @param   phVfsObj    Where to return the object handle (referenced). This
     305 *                      must be cast to the desired type before use.
    306306 */
    307307RTDECL(int)         RTVfsFsStrmNext(RTVFSFSSTREAM hVfsFss, char **ppszName, RTVFSOBJTYPE *penmType, PRTVFSOBJ phVfsObj);
     
    326326 *
    327327 * @returns New reference count on success (0 if closed), UINT32_MAX on failure.
    328  * @param   hVfsIos         The VFS directory handle.
     328 * @param   hVfsDir         The VFS directory handle.
    329329 */
    330330RTDECL(uint32_t)    RTVfsDirRelease(RTVFSDIR hVfsDir);
     
    567567 * @param   fBlocking       Whether the call is blocking (@c true) or not.  If
    568568 *                          not, the @a pcbWritten parameter must not be NULL.
    569  * @param   pcbRead         Where to always store the number of bytes actually
     569 * @param   pcbWritten      Where to always store the number of bytes actually
    570570 *                          written.  This can be NULL if @a fBlocking is true.
    571571 * @sa      RTVfsFileWrite, RTFileWrite, RTPipeWrite, RTPipeWriteBlocking,
     
    771771 *          implementation.
    772772 *
    773  * @param   hVfsObj         The VFS object handle.
     773 * @param   hVfsFile        The VFS file handle.
    774774 * @param   pObjInfo        Where to return the info.
    775775 * @param   enmAddAttr      Which additional attributes should be retrieved.
     
    801801 * @param   pvBuf           Where to store the read bytes.
    802802 * @param   cbToRead        The number of bytes to read.
    803  * @param   fBlocking       Whether the call is blocking (@c true) or not.  If
    804  *                          not, the @a pcbRead parameter must not be NULL.
    805803 * @param   pcbRead         Where to always store the number of bytes actually
    806  *                          read.  This can be NULL if @a fBlocking is true.
     804 *                          read.  Optional.
    807805 * @sa      RTVfsIoStrmRead, RTFileRead, RTPipeRead, RTPipeReadBlocking,
    808806 *          RTSocketRead
     
    820818 * @param   pvBuf           The bytes to write.
    821819 * @param   cbToWrite       The number of bytes to write.
    822  * @param   fBlocking       Whether the call is blocking (@c true) or not.  If
    823  *                          not, the @a pcbWritten parameter must not be NULL.
    824  * @param   pcbRead         Where to always store the number of bytes actually
    825  *                          written.  This can be NULL if @a fBlocking is true.
     820 * @param   pcbWritten      Where to always store the number of bytes actually
     821 *                          written.  This can be NULL.
    826822 * @sa      RTVfsIoStrmRead, RTFileWrite, RTPipeWrite, RTPipeWriteBlocking,
    827823 *          RTSocketWrite
     
    910906 *
    911907 * The data is read in chunks from @a hVfsIosSrc and written to @a hVfsIosDst
    912  * until @hVfsIosSrc indicates end of stream.
     908 * until @a hVfsIosSrc indicates end of stream.
    913909 *
    914910 * @returns IPRT status code
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette