aboutsummaryrefslogtreecommitdiffstats
path: root/display.h
diff options
context:
space:
mode:
authorreinelt <>2003-09-01 04:09:35 +0000
committerreinelt <>2003-09-01 04:09:35 +0000
commit003b829ced31a74e5e229571f51a19e73f9be138 (patch)
treeeb6420cad25f7e6cc71d58b5643be4ca43e482bd /display.h
parent363c54b8c0bce6871120cdbd39271045e6d33f05 (diff)
downloadlcd4linux-003b829ced31a74e5e229571f51a19e73f9be138.tar.gz
[lcd4linux @ 2003-09-01 04:09:34 by reinelt]
icons nearly finished, but MatrixOrbital only
Diffstat (limited to 'display.h')
-rw-r--r--display.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/display.h b/display.h
index 9446e7e..11510aa 100644
--- a/display.h
+++ b/display.h
@@ -1,4 +1,4 @@
-/* $Id: display.h,v 1.19 2003/08/24 05:17:58 reinelt Exp $
+/* $Id: display.h,v 1.20 2003/09/01 04:09:34 reinelt Exp $
*
* framework for device drivers
*
@@ -20,6 +20,9 @@
*
*
* $Log: display.h,v $
+ * Revision 1.20 2003/09/01 04:09:34 reinelt
+ * icons nearly finished, but MatrixOrbital only
+ *
* Revision 1.19 2003/08/24 05:17:58 reinelt
* liblcd4linux patch from Patrick Schemitz
*
@@ -112,7 +115,7 @@ typedef struct LCD {
int (*clear) (int full);
int (*put) (int x, int y, char *text);
int (*bar) (int type, int x, int y, int max, int len1, int len2);
- int (*icon) (int num, int row, int col, unsigned char *bitmap);
+ int (*icon) (int num, int row, int col);
int (*gpo) (int num, int val);
int (*flush) (void);
int (*quit) (void);
@@ -135,7 +138,7 @@ int lcd_query (int *rows, int *cols, int *xres, int *yres, int *bars, int *icons
int lcd_clear (int full);
int lcd_put (int row, int col, char *text);
int lcd_bar (int type, int row, int col, int max, int len1, int le2);
-int lcd_icon (int num, int row, int col, unsigned char *bitmap);
+int lcd_icon (int num, int row, int col);
int lcd_gpo (int num, int val);
int lcd_flush (void);
int lcd_quit (void);