source: npl/mediabox/lcdproc_edwin/src/server/drivers/text.h @ c5c522c

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