Changeset 17008 in vbox for trunk/include/iprt/stream.h
- Timestamp:
- Feb 23, 2009 12:23:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/stream.h
r8245 r17008 67 67 68 68 /** 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 */ 78 RTR3DECL(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 */ 90 RTR3DECL(int) RTStrmOpenF(const char *pszMode, PRTSTREAM *ppStream, const char *pszFilenameFmt, ...); 91 92 /** 69 93 * Closes the specified stream. 70 94 *
Note:
See TracChangeset
for help on using the changeset viewer.