Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #ifndef __GLIBC__MENUET_CONSOLE_H
  2. #define __GLIBC__MENUET_CONSOLE_H
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. #include<menuet/os.h>
  9.  
  10. extern const unsigned char font_8x8[];
  11. extern void __menuet__redraw_console(void);
  12. extern void __menuet__show_text_cursor(void);
  13. extern void __menuet__hide_text_cursor(void);
  14. extern void __menuet__init_console(int x,int y);
  15. extern void __menuet__clrscr(void);
  16. extern void __menuet__putch(char c);
  17. extern void __menuet__gotoxy(int x,int y);
  18. extern void __menuet__outtextxy(int x,int y,char c);
  19. extern void __menuet__getxy(int * x,int * y);
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif
  26.