File: glcd-render.h

package info (click to toggle)
lcdproc 0.5.9-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,088 kB
  • sloc: ansic: 59,645; sh: 1,740; perl: 681; makefile: 417
file content (14 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GLCD_RENDER_H
#define GLCD_RENDER_H

int glcd_render_init(Driver *drvthis);
void glcd_render_close(Driver *drvthis);
void glcd_render_char(Driver *drvthis, int x, int y, unsigned char c);
int glcd_render_icon(Driver *drvthis, int x, int y, int icon);
void glcd_render_bignum(Driver *drvthis, int x, int num);

#ifdef HAVE_FT2
void glcd_render_char_unicode(Driver *drvthis, int x, int y, int c, int yscale, int xscale);
#endif

#endif