home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / FLD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  519 b   |  19 lines

  1. /*    fld.h - structure declarations for FIELD processing
  2.  
  3.     Copyright (c) 1984, 1985 by JMI Software Consultants, Inc.
  4. */
  5.  
  6. typedef struct
  7.     {
  8.     TEXT *f_buf;    /* address of FIELD buffer */
  9.     TEXT **f_ptr;    /* address of variable pointing to this FLD */
  10.     BYTES f_siz;    /* size (in bytes) of FIELD buffer */
  11.     } FLD;
  12.  
  13. typedef struct fdef
  14.     {
  15.     struct fdef *fd_next;    /* address of next FDEF for this unit */
  16.     FLD *fd_defs;            /* address of array of FIELDs */
  17.     COUNT fd_ndef;            /* number of array elements */
  18.     } FDEF;
  19.