aboutsummaryrefslogtreecommitdiffstats
path: root/Skeleton.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-09-13 06:45:43 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2003-09-13 06:45:43 +0000
commite647c45635992c0b75f7d71bf8681704fc0e714d (patch)
treeb5dd15f2a573a050e451e42fa8c78c6ef652e131 /Skeleton.c
parent7b6bc7621c9fff5fc1433ac7aa517fd800e712f0 (diff)
downloadlcd4linux-e647c45635992c0b75f7d71bf8681704fc0e714d.tar.gz
[lcd4linux @ 2003-09-13 06:45:43 by reinelt]
icons for all remaining drivers git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@243 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'Skeleton.c')
-rw-r--r--Skeleton.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/Skeleton.c b/Skeleton.c
index 7e9b0d9..40622aa 100644
--- a/Skeleton.c
+++ b/Skeleton.c
@@ -1,4 +1,4 @@
-/* $Id: Skeleton.c,v 1.10 2003/08/17 12:11:58 reinelt Exp $
+/* $Id: Skeleton.c,v 1.11 2003/09/13 06:45:43 reinelt Exp $
*
* skeleton driver for new display modules
*
@@ -20,6 +20,9 @@
*
*
* $Log: Skeleton.c,v $
+ * Revision 1.11 2003/09/13 06:45:43 reinelt
+ * icons for all remaining drivers
+ *
* Revision 1.10 2003/08/17 12:11:58 reinelt
* framework for icons prepared
*
@@ -107,6 +110,11 @@ int Skel_bar (int type, int row, int col, int max, int len1, int len2)
return 0;
}
+int Skel_icon (int num, int seq, int row, int col)
+{
+ return 0;
+}
+
int Skel_gpo (int num, int val)
{
return 0;
@@ -131,11 +139,13 @@ LCD Skeleton[] = {
xres: 5,
yres: 8,
bars: BAR_L|BAR_R,
- gpo: 0,
+ icons: 0,
+ gpos: 0,
init: Skel_init,
clear: Skel_clear,
put: Skel_put,
bar: Skel_bar,
+ icon: Skel_icon,
gpo: Skel_gpo,
flush: Skel_flush,
quit: Skel_quit },