home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 2.ddi / CTIFIL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  1.6 KB  |  59 lines

  1. /*
  2.  *    incremental isam file structures
  3.  *
  4.  *    This program is the CONFIDENTIAL and PROPRIETARY property 
  5.  *    of FairCom(R) Corporation. Any unauthorized use, reproduction or
  6.  *    transfer of this program is strictly prohibited.
  7.  *
  8.  *    Copyright (c) 1987, 1988, 1989 FairCom Corporation
  9.  *    (Subject to limited distribution and
  10.  *     restricted disclosure only.)
  11.  *    *** ALL RIGHTS RESERVED ***
  12.  *
  13.  *    4006 West Broadway
  14.  *    Columbia, MO 65203
  15.  *
  16.  *
  17.  *    c-tree(R)    Version 4.3
  18.  *            Release C
  19.  *            February 7, 1989 17:30
  20.  *
  21.  */
  22.  
  23. #define DAT_EXTENT    ".dat"
  24. #define IDX_EXTENT    ".idx"
  25.  
  26. typedef struct iseg {
  27.     COUNT    soffset,    /* segment offset    */
  28.         slength,    /* segment length    */
  29.         segmode;    /* segment mode        */
  30.     } ISEG;
  31.  
  32. typedef struct iidx {
  33.     COUNT    ikeylen,    /* key length        */
  34.         ikeytyp,    /* key type        */
  35.         ikeydup,    /* duplicate flag    */
  36.         inulkey,    /* null ct_key flag    */
  37.         iempchr,    /* empty character    */
  38.         inumseg;    /* number of segments    */
  39.     ISEG   *seg;        /* segment information    */
  40.     TEXT   *ridxnam;    /* r-tree symbolic name    */
  41.     } IIDX;
  42.  
  43. typedef struct ifil {
  44.     TEXT   *pfilnam;    /* file name (w/o ext)    */
  45.     COUNT    dfilno;        /* data file number    */
  46.     UCOUNT    dreclen;    /* data record length    */
  47.     UCOUNT    dxtdsiz;    /* data file ext size    */
  48.     COUNT    dfilmod;    /* data file mode    */
  49.     COUNT    dnumidx;    /* number of indices    */
  50.     UCOUNT    ixtdsiz;    /* index file ext size    */
  51.     COUNT    ifilmod;    /* index file mode    */
  52.     IIDX   *ix;        /* index information    */
  53.     TEXT   *rfstfld;    /* r-tree 1st fld name    */
  54.     TEXT   *rlstfld;    /* r-tree last fld name    */
  55.     COUNT    tfilno;        /* temporary file number*/
  56.     } IFIL;
  57.  
  58. /* end of ctifil.h */
  59.