kbd: use a better get_key method
[thunix.git] / include / console.h
blobb3c6710e7328c3507dc2079fe581cdc5c6b501ef
1 #ifndef CONSOLE_H
2 #define CONSOLE_H
4 #define ORIG_X (0)
5 #define ORIG_Y (0)
6 #define ORIG_VIDEO_COLS (80)
7 #define ORIG_VIDEO_LINES (25)
9 void get_cursor(int *, int *);
10 void set_cursor(void);
11 void con_init(void);
12 void con_write(char *buf, int nr);
14 extern int puts(char *);
15 extern int putchar(int c);
16 extern char getchar();
17 extern void wait_key_press(void);
20 #endif /* console.h */