gcc484ntopperl-5.22
Last change
on this file since c5c522c 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:
645 bytes
|
Line | |
---|
1 | #ifndef LCD_TEXT_H |
---|
2 | #define LCD_TEXT_H |
---|
3 | |
---|
4 | extern lcd_logical_driver *text; |
---|
5 | |
---|
6 | int text_init(struct lcd_logical_driver *driver, char *args); |
---|
7 | void text_close(); |
---|
8 | void text_clear(); |
---|
9 | void text_flush(); |
---|
10 | void text_string(int x, int y, char string[]); |
---|
11 | void text_chr(int x, int y, char c); |
---|
12 | int text_contrast(int contrast); |
---|
13 | void text_backlight(int on); |
---|
14 | void text_init_vbar(); |
---|
15 | void text_init_hbar(); |
---|
16 | void text_init_num(); |
---|
17 | void text_vbar(int x, int len); |
---|
18 | void text_hbar(int x, int y, int len); |
---|
19 | void text_num(int x, int num); |
---|
20 | void text_set_char(int n, char *dat); |
---|
21 | void text_flush_box(int lft, int top, int rgt, int bot); |
---|
22 | void text_draw_frame(char *dat); |
---|
23 | |
---|
24 | |
---|
25 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.