Changeset 54724 in vbox for trunk/include
- Timestamp:
- Mar 11, 2015 8:37:08 PM (10 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r54415 r54724 1475 1475 # define RTStrmFlush RT_MANGLER(RTStrmFlush) 1476 1476 # define RTStrmGetCh RT_MANGLER(RTStrmGetCh) 1477 # define RTStrmInputGetEchoChars RT_MANGLER(RTStrmInputGetEchoChars) 1477 1478 # define RTStrmGetLine RT_MANGLER(RTStrmGetLine) 1478 1479 # define RTStrmOpen RT_MANGLER(RTStrmOpen) … … 1486 1487 # define RTStrmReadEx RT_MANGLER(RTStrmReadEx) 1487 1488 # define RTStrmRewind RT_MANGLER(RTStrmRewind) 1489 # define RTStrmInputSetEchoChars RT_MANGLER(RTStrmInputSetEchoChars) 1488 1490 # define RTStrmSetMode RT_MANGLER(RTStrmSetMode) 1489 1491 # define RTStrmWriteEx RT_MANGLER(RTStrmWriteEx) -
trunk/include/iprt/stream.h
r51770 r54724 127 127 128 128 /** 129 * Returns the current echo mode. 130 * This works only for standard input streams. 131 * 132 * @returns iprt status code. 133 * @param pStream The stream. 134 * @param pfEchoChars Where to store the flag whether typed characters are echoed. 135 */ 136 RTR3DECL(int) RTStrmInputGetEchoChars(PRTSTREAM pStream, bool *pfEchoChars); 137 138 /** 139 * Changes the behavior for echoing inpit characters on the command line. 140 * This works only for standard input streams. 141 * 142 * @returns iprt status code. 143 * @param pStream The stream. 144 * @param fEchoChars Flag whether echoing typed characters is wanted. 145 */ 146 RTR3DECL(int) RTStrmInputSetEchoChars(PRTSTREAM pStream, bool fEchoChars); 147 148 /** 129 149 * Rewinds the stream. 130 150 *
Note:
See TracChangeset
for help on using the changeset viewer.