Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv26058/src/include
Modified Files:
Types.h
Log Message:
Complete implementation for StatusBar indicators under Windows
Index: Types.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Types.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** Types.h 16 Nov 2003 13:25:21 -0000 1.19
--- Types.h 18 Nov 2003 18:03:41 -0000 1.20
***************
*** 48,51 ****
--- 48,58 ----
typedef struct ToolHandle *ToolHandle;
+ typedef struct IndicatorHandle
+ {
+ struct IndicatorHandle *next;
+ struct IndicatorHandle *prev;
+ char *title;
+ } *IndicatorHandle;
+
typedef struct
{
|