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

  1. /*
  2.  *    variable record length support routine header
  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) 1985, 1986, 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. #ifndef LONGVARD
  24.  
  25. typedef struct vrfmt {    /* beginning of var len records */
  26.     UCOUNT    recmrk;    /* record marker        */
  27.             /* 0xfafa active 0xfdfd deleted */
  28.             /* 0xfbfb available space node    */
  29.     VRLEN    trclen;    /* total record length        */
  30.     VRLEN    urclen;    /* utilized record length    */
  31. } VHDR;
  32.  
  33. #else
  34.  
  35. typedef struct vrfmt {    /* beginning of var len records */
  36.     VRLEN    trclen;    /* total record length        */
  37.     VRLEN    urclen;    /* utilized record length    */
  38.     UCOUNT    recmrk;    /* record marker        */
  39.             /* 0xfafa active 0xfdfd deleted */
  40.             /* 0xfbfb available space node    */
  41. } VHDR;
  42.  
  43. #endif
  44.  
  45.  
  46. #define    VDEL_FLAG    0xfdfd
  47. #define VACT_FLAG    0xfafa
  48. #define    VNOD_FLAG    0xfbfb
  49. #define    SIZVHDR        (sizeof(UCOUNT) + 2 * sizeof(VRLEN))
  50.  
  51. /* end of header */
  52.