home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / MSGDP206.SZH / NEDIT.H < prev    next >
Text File  |  1990-07-30  |  462b  |  16 lines

  1. /* PUBLIC DOMAIN */
  2.  
  3. /*
  4.  * this structure defines a LINE 
  5.  */
  6.  
  7. typedef struct _line {
  8.     char *text;        /* pointer to actual line text */
  9.     unsigned int block:1;    /* this is in a block */
  10.     unsigned int hide:1;    /* this is a hidden line */
  11.     unsigned int quote:1;    /* this is a quoted line */
  12.     int column;        /* if a block, starting column */
  13.     struct _line *prev;     /* previous line in BUFFER */
  14.     struct _line *next;     /* next line in BUFFER */
  15.     } LINE;
  16.