OSDN Git Service

Moved the junk codes to junk directory.
[kozos-expbrd/kozos_expbrd.git] / firm / junk / 10 / bootload / lcd.h
1 #ifndef _LCD_H_INCLUDED_
2 #define _LCD_H_INCLUDED_
3
4 #include "defines.h"
5
6 void lcd_init(void);
7 void lcd_clear(void);
8 void lcd_set_pixel(int x, int y, int reverse);
9 void lcd_draw_line(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
10     uint8 reverse);
11 void lcd_draw_box(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
12     uint8 reverse);
13 void lcd_fill_box(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
14     uint8 reverse);
15 void lcd_draw_string(uint8 x, uint8 y, char *str, uint8 reverse);
16 void lcd_draw_char(uint8 x, uint8 y, char c, uint8 reverse);
17 void lcd_draw_checkbox(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
18     uint8 state, uint8 reverse);
19 void lcd_draw_progressbar(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
20     int min, int max, int value, uint8 reverse);
21
22 #endif
23