Last change
on this file was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
File size:
677 bytes
|
Line | |
---|
1 | #ifndef LCD_CURSES_H |
---|
2 | #define LCD_CURSES_H |
---|
3 | |
---|
4 | |
---|
5 | extern lcd_logical_driver *curses_drv; |
---|
6 | |
---|
7 | int curses_drv_init(struct lcd_logical_driver *driver, char *args); |
---|
8 | void curses_drv_close(); |
---|
9 | void curses_drv_clear(); |
---|
10 | void curses_drv_flush(); |
---|
11 | void curses_drv_string(int x, int y, char string[]); |
---|
12 | void curses_drv_chr(int x, int y, char c); |
---|
13 | void curses_drv_vbar(int x, int len); |
---|
14 | void curses_drv_hbar(int x, int y, int len); |
---|
15 | void curses_drv_icon(int which, char dest); |
---|
16 | void curses_drv_flush(); |
---|
17 | void curses_drv_flush_box(int lft, int top, int rgt, int bot); |
---|
18 | void curses_drv_draw_frame(char *dat); |
---|
19 | char curses_drv_getkey(); |
---|
20 | void curses_drv_init_num(); |
---|
21 | void curses_drv_num(int x, int num); |
---|
22 | |
---|
23 | |
---|
24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.