2004-02-15 20:46:45 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONSOLE_H__
|
|
|
|
#define __CONSOLE_H__
|
|
|
|
|
|
|
|
extern void console_init();
|
|
|
|
extern void console_clear();
|
|
|
|
|
|
|
|
extern void console_put(char c);
|
|
|
|
extern void console_print(char *s);
|
|
|
|
|
|
|
|
extern unsigned long console_get_videobase();
|
|
|
|
extern unsigned long console_get_row_bytes();
|
|
|
|
extern unsigned long console_get_depth();
|
|
|
|
extern unsigned long console_get_width();
|
2004-02-21 01:56:19 +00:00
|
|
|
extern unsigned long console_get_height();
|
2004-02-21 01:47:02 +00:00
|
|
|
extern unsigned long console_get_video();
|
2004-02-15 20:46:45 +00:00
|
|
|
|
|
|
|
#endif
|