VirtualBox

Changeset 17008 in vbox for trunk/include/iprt/stream.h


Ignore:
Timestamp:
Feb 23, 2009 12:23:01 PM (16 years ago)
Author:
vboxsync
Message:

IPRT: Expose (and fix) RTStrmOpenF and RTStrmOpenFV.

File:
1 edited

Legend:

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

    r8245 r17008  
    6767
    6868/**
     69 * Opens a file stream.
     70 *
     71 * @returns iprt status code.
     72 * @param   pszMode         The open mode. See fopen() standard.
     73 *                          Format: <a|r|w>[+][b|t]
     74 * @param   ppStream        Where to store the opened stream.
     75 * @param   pszFilenameFmt  Filename path format string.
     76 * @param   args            Arguments to the format string.
     77 */
     78RTR3DECL(int) RTStrmOpenFV(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, va_list args);
     79
     80/**
     81 * Opens a file stream.
     82 *
     83 * @returns iprt status code.
     84 * @param   pszMode         The open mode. See fopen() standard.
     85 *                          Format: <a|r|w>[+][b|t]
     86 * @param   ppStream        Where to store the opened stream.
     87 * @param   pszFilenameFmt  Filename path format string.
     88 * @param   ...             Arguments to the format string.
     89 */
     90RTR3DECL(int) RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...);
     91
     92/**
    6993 * Closes the specified stream.
    7094 *
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