src/console.h
branchlua-threads
changeset 206 47837a6bbbea
parent 203 ffdf53fd0337
child 212 ddc79529a1e0
equal deleted inserted replaced
205:c13d2fc7b480 206:47837a6bbbea
    82  */
    82  */
    83 void console_set_callbacks (struct console *console, const struct console_callbacks *callbacks, void *cb_arg);
    83 void console_set_callbacks (struct console *console, const struct console_callbacks *callbacks, void *cb_arg);
    84 
    84 
    85 /**
    85 /**
    86  * Continue reading input after a CONSOLE_WAIT return code from console_callbacks::on_line.
    86  * Continue reading input after a CONSOLE_WAIT return code from console_callbacks::on_line.
       
    87  *
       
    88  * This does nothing if the console is not currently in the waiting state (i.e. last console_callbacks::on_line
       
    89  * returned CONSOLE_WAIT).
    87  */
    90  */
    88 void console_continue (struct console *console);
    91 void console_continue (struct console *console);
    89 
    92 
    90 /**
    93 /**
    91  * Output a full line (without included newline) on the console, trying not to interfere with the input too much.
    94  * Output a full line (without included newline) on the console, trying not to interfere with the input too much.