aboutsummaryrefslogtreecommitdiffstats
path: root/Skeleton.c
diff options
context:
space:
mode:
authorreinelt <>2003-09-13 06:45:43 +0000
committerreinelt <>2003-09-13 06:45:43 +0000
commitfd10fc428dbd2c280f1d0fe19ba5d8dc0921dde2 (patch)
treeb5dd15f2a573a050e451e42fa8c78c6ef652e131 /Skeleton.c
parenta13bb251cc46696b7458828ed3965459c3da9c7e (diff)
downloadlcd4linux-fd10fc428dbd2c280f1d0fe19ba5d8dc0921dde2.tar.gz
[lcd4linux @ 2003-09-13 06:45:43 by reinelt]
icons for all remaining drivers
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 },