OSDN Git Service

Renamed the first sample project.
[kozos-expbrd/kozos_expbrd.git] / firm / sample / simple_mp3_player / os / sg12232c.h
1 #ifndef _LCD_H_INCLUDED_
2 #define _LCD_H_INCLUDED_
3
4 #include "defines.h"
5
6 void sg12232c_init(void);
7 void sg12232c_clear(void);
8 void sg12232c_set_pixel(int x, int y, int reverse);
9 void sg12232c_draw_line(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
10     uint8 reverse);
11 void sg12232c_draw_box(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
12     uint8 reverse);
13 void sg12232c_fill_box(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
14     uint8 reverse);
15 void sg12232c_draw_string(uint8 x, uint8 y, char *str, uint8 reverse);
16 void sg12232c_draw_char(uint8 x, uint8 y, char c, uint8 reverse);
17 void sg12232c_draw_checkbox(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
18     uint8 state, uint8 reverse);
19 void sg12232c_draw_progressbar(uint16 x1, uint16 y1, uint16 x2, uint16 y2,
20     int min, int max, int value, uint8 reverse);
21
22 #endif
23