home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 47_9.c < prev    next >
C/C++ Source or Header  |  2003-04-15  |  234b  |  18 lines

  1. /*
  2.  * Example 47-9
  3.  * The Tk_ConfigSpec typedef.
  4.  */
  5.  
  6. typedef struct Tk_ConfigSpec {
  7.     int type;
  8.     char *name;
  9.     char *dbName;
  10.     char *dbClass;
  11.     char *defValue;
  12.     int offset;
  13.     int specflags;
  14.     Tk_CustomOption *customPtr;
  15. } Tk_ConfigSpec;
  16.  
  17.  
  18.