From 2fa253477b2f12e033c7e337268ca1c4354a280a Mon Sep 17 00:00:00 2001 From: reinelt <> Date: Mon, 19 Aug 2002 07:52:19 +0000 Subject: [lcd4linux @ 2002-08-19 07:52:19 by reinelt] corrected type declaration of (*defchar)() --- bar.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'bar.c') diff --git a/bar.c b/bar.c index e48ae4d..837eee1 100644 --- a/bar.c +++ b/bar.c @@ -1,4 +1,4 @@ -/* $Id: bar.c,v 1.2 2002/08/19 07:36:29 reinelt Exp $ +/* $Id: bar.c,v 1.3 2002/08/19 07:52:19 reinelt Exp $ * * generic bar handling * @@ -20,6 +20,9 @@ * * * $Log: bar.c,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 @@ -41,7 +44,7 @@ * * int bar_draw (int type, int row, int col, int max, int len1, int len2) * - * int bar_process (void) + * int bar_process (void(*defchar)(int ascii, char *matrix)) * * int bar_peek (int row, int col) * @@ -311,7 +314,7 @@ static void pack_segments (void) } -static void define_chars (int(*defchar)(int ascii, char *matrix)) +static void define_chars (void(*defchar)(int ascii, char *matrix)) { int c, i, j; char buffer[8]; @@ -373,7 +376,7 @@ static void define_chars (int(*defchar)(int ascii, char *matrix)) } -int bar_process (int(*defchar)(int ascii, char *matrix)) +int bar_process (void(*defchar)(int ascii, char *matrix)) { int n, s; -- cgit v1.2.3