home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_06 / 8n06102a < prev    next >
Text File  |  1990-03-11  |  1KB  |  28 lines

  1.  
  2.  
  3.                           Figure 2
  4.  
  5.     typedef struct {
  6.                       int   row,
  7.                             col,
  8.                             len,
  9.                             type,      /* Bit pattern indication data type */
  10.                             e_attr;    /* Bit pattern for entry attributes */
  11.                       long  f_attr,    /* Foreground display attribute     */
  12.                             b_attr;    /* Background display attribute     */
  13.                       BOOL  stat;      /* TRUE if changed; else FALSE      */
  14.  
  15.                       char  pad,
  16.                             *name,     /* Assigned field name               */
  17.                             *dflt,     /* Default assigned at creation time */
  18.                             *picture,  /* Picture of regular expression     */
  19.                             *buffer,   /* Address of field contents         */
  20.                             *comp_rgx; /* Compiled regxpr for REGEXP fields */
  21.  
  22.                       BOOL  (*pre_func)(),
  23.                             (*edit_func)();
  24.                       int   (*post_func)();
  25.  
  26.                } SML_FIELD;
  27.  
  28.