9 lines
206 B
C++
9 lines
206 B
C++
|
|
#pragma once
|
||
|
|
namespace fc
|
||
|
|
{
|
||
|
|
/** enables / disables echoing of console input, useful for
|
||
|
|
* entering passwords on the console.
|
||
|
|
*/
|
||
|
|
void set_console_echo( bool enable_echo );
|
||
|
|
} // namespace fc
|