aboutsummaryrefslogtreecommitdiffstats
path: root/widget_icon.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-26 09:27:21 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-26 09:27:21 +0000
commit1338a264d57ad5f74ce6f8283966020a8e978d2e (patch)
treeb14a2a596dd615ae17880b7007d6b2b78191af94 /widget_icon.h
parent55abb63f11967a147d26e4654cbbd7ab3f01a558 (diff)
downloadlcd4linux-1338a264d57ad5f74ce6f8283966020a8e978d2e.tar.gz
[lcd4linux @ 2004-06-26 09:27:20 by reinelt]
added '-W' to CFLAGS changed all C++ comments to C ones ('//' => '/* */') cleaned up a lot of signed/unsigned mistakes git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@480 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'widget_icon.h')
-rw-r--r--widget_icon.h30
1 files changed, 18 insertions, 12 deletions
diff --git a/widget_icon.h b/widget_icon.h
index f2f3029..4b64f15 100644
--- a/widget_icon.h
+++ b/widget_icon.h
@@ -1,4 +1,4 @@
-/* $Id: widget_icon.h,v 1.5 2004/03/06 20:31:16 reinelt Exp $
+/* $Id: widget_icon.h,v 1.6 2004/06/26 09:27:21 reinelt Exp $
*
* icon widget handling
*
@@ -23,6 +23,12 @@
*
*
* $Log: widget_icon.h,v $
+ * Revision 1.6 2004/06/26 09:27:21 reinelt
+ *
+ * added '-W' to CFLAGS
+ * changed all C++ comments to C ones ('//' => '/* */')
+ * cleaned up a lot of signed/unsigned mistakes
+ *
* Revision 1.5 2004/03/06 20:31:16 reinelt
* Complete rewrite of the evaluator to get rid of the code
* from mark Morley (because of license issues).
@@ -51,17 +57,17 @@
#define _WIDGET_ICON_H_
typedef struct WIDGET_ICON {
- char *speed_expr; // expression for update interval
- void *speed_tree; // pre-compiled expression for update interval
- int speed; // update interval (msec)
- char *visible_expr; // expression for visibility
- void *visible_tree; // pre-compiled expression for visibility
- int visible; // icon visible?
- int ascii; // ascii code of icon (depends on the driver)
- int curmap; // current bitmap sequence
- int prvmap; // previous bitmap sequence
- int maxmap; // number of bitmap sequences
- unsigned char *bitmap; // bitmaps of (animated) icon
+ char *speed_expr; /* expression for update interval */
+ void *speed_tree; /* pre-compiled expression for update interval */
+ int speed; /* update interval (msec) */
+ char *visible_expr; /* expression for visibility */
+ void *visible_tree; /* pre-compiled expression for visibility */
+ int visible; /* icon visible? */
+ int ascii; /* ascii code of icon (depends on the driver) */
+ int curmap; /* current bitmap sequence */
+ int prvmap; /* previous bitmap sequence */
+ int maxmap; /* number of bitmap sequences */
+ unsigned char *bitmap; /* bitmaps of (animated) icon */
} WIDGET_ICON;
extern WIDGET_CLASS Widget_Icon;