home *** CD-ROM | disk | FTP | other *** search
- /*
- * incremental isam file structures
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #define DAT_EXTENT ".dat"
- #define IDX_EXTENT ".idx"
-
- typedef struct iseg {
- COUNT soffset, /* segment offset */
- slength, /* segment length */
- segmode; /* segment mode */
- } ISEG;
-
- typedef struct iidx {
- COUNT ikeylen, /* key length */
- ikeytyp, /* key type */
- ikeydup, /* duplicate flag */
- inulkey, /* null ct_key flag */
- iempchr, /* empty character */
- inumseg; /* number of segments */
- ISEG *seg; /* segment information */
- TEXT *ridxnam; /* r-tree symbolic name */
- } IIDX;
-
- typedef struct ifil {
- TEXT *pfilnam; /* file name (w/o ext) */
- COUNT dfilno; /* data file number */
- UCOUNT dreclen; /* data record length */
- UCOUNT dxtdsiz; /* data file ext size */
- COUNT dfilmod; /* data file mode */
- COUNT dnumidx; /* number of indices */
- UCOUNT ixtdsiz; /* index file ext size */
- COUNT ifilmod; /* index file mode */
- IIDX *ix; /* index information */
- TEXT *rfstfld; /* r-tree 1st fld name */
- TEXT *rlstfld; /* r-tree last fld name */
- COUNT tfilno; /* temporary file number*/
- } IFIL;
-
- /* end of ctifil.h */
-