home *** CD-ROM | disk | FTP | other *** search
- /* fld.h - structure declarations for FIELD processing
-
- Copyright (c) 1984, 1985 by JMI Software Consultants, Inc.
- */
-
- typedef struct
- {
- TEXT *f_buf; /* address of FIELD buffer */
- TEXT **f_ptr; /* address of variable pointing to this FLD */
- BYTES f_siz; /* size (in bytes) of FIELD buffer */
- } FLD;
-
- typedef struct fdef
- {
- struct fdef *fd_next; /* address of next FDEF for this unit */
- FLD *fd_defs; /* address of array of FIELDs */
- COUNT fd_ndef; /* number of array elements */
- } FDEF;