aboutsummaryrefslogtreecommitdiffstats
path: root/bar.h
diff options
context:
space:
mode:
authorreinelt <>2002-08-19 07:52:19 +0000
committerreinelt <>2002-08-19 07:52:19 +0000
commit2fa253477b2f12e033c7e337268ca1c4354a280a (patch)
tree2199705f23d1f48c5e9365f744fa35c721e097de /bar.h
parentd8134396763fbf4ace33e6adfc98ebcb9ce3d49f (diff)
downloadlcd4linux-2fa253477b2f12e033c7e337268ca1c4354a280a.tar.gz
[lcd4linux @ 2002-08-19 07:52:19 by reinelt]
corrected type declaration of (*defchar)()
Diffstat (limited to 'bar.h')
-rw-r--r--bar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/bar.h b/bar.h
index 2864cc7..f8e4505 100644
--- a/bar.h
+++ b/bar.h
@@ -1,4 +1,4 @@
-/* $Id: bar.h,v 1.2 2002/08/19 07:36:29 reinelt Exp $
+/* $Id: bar.h,v 1.3 2002/08/19 07:52:19 reinelt Exp $
*
* generic bar handling
*
@@ -20,6 +20,9 @@
*
*
* $Log: bar.h,v $
+ * Revision 1.3 2002/08/19 07:52:19 reinelt
+ * corrected type declaration of (*defchar)()
+ *
* Revision 1.2 2002/08/19 07:36:29 reinelt
*
* finished bar.c, USBLCD is the first driver that uses the generic bar functions
@@ -67,7 +70,7 @@ int bar_init (int rows, int cols, int xres, int yres, int chars);
void bar_clear(void);
void bar_add_segment(int len1, int len2, int type, int ascii);
int bar_draw (int type, int row, int col, int max, int len1, int len2);
-int bar_process (int(*defchar)(int ascii, char *matrix));
+int bar_process (void(*defchar)(int ascii, char *matrix));
int bar_peek (int row, int col);
#endif