X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=visor;a=blobdiff_plain;f=visor%2Fsrc%2Fterm.h;h=fbf0558f088b42955cb121ab95efc8ff89951b9d;hp=82ccd16aa56677ec6d908a674c3021406f023f9b;hb=c17213b9500cfb26ba0d85b1a63c9aeb56981748;hpb=519bb5db64dd400724d8beedd10bf54d8cf2b7af diff --git a/visor/src/term.h b/visor/src/term.h index 82ccd16..fbf0558 100644 --- a/visor/src/term.h +++ b/visor/src/term.h @@ -36,16 +36,20 @@ union term_event { int term_init(const char *ttypath); void term_cleanup(void); +void term_reset(void); void term_getsize(int *width, int *height); void term_resize_func(void (*func)(int, int)); void term_send(const char *s, int size); +void term_putchar(char c); void term_puts(const char *s); void term_printf(const char *fmt, ...); void term_flush(void); void term_clear(void); +void term_setcursor(int row, int col); + int term_getchar(void); #endif /* TERM_H_ */