home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / obsolete / tupsiz.h < prev   
Encoding:
C/C++ Source or Header  |  1992-08-27  |  781 b   |  39 lines

  1. #ifndef    TupSizIncluded    /* Include this file only once. */
  2. #define TupSizIncluded    1
  3. /* ----------------------------------------------------------------
  4.  *    THIS FILE IS GOING AWAY -cim 6/8/90
  5.  * ----------------------------------------------------------------
  6.  */
  7.  
  8. #define TUPSIZ_H_OBSOLETE 1
  9. #define TUPSIZ_H_OBSOLETE 2
  10.     
  11. #if 0
  12. /*
  13.  * tupsiz.h --
  14.  *    POSTGRES tuple size definitions.
  15.  *
  16.  * Identification:
  17.  *    $Header: /private/postgres/src/lib/H/obsolete/RCS/tupsiz.h,v 1.1 1990/06/12 21:25:17 cimarron Version_2 $
  18.  */
  19. #ifndef C_H
  20. #include "c.h"
  21. #endif
  22.  
  23. typedef Size    TupleSize;
  24.  
  25. #define MaxTupleSize    0x7fffffff
  26.  
  27. /*
  28.  * TupleSizeIsValid --
  29.  *    True iff the tuple size is valid.
  30.  */
  31. extern
  32. bool
  33. TupleSizeIsValid ARGS((
  34.     TupleSize    size
  35. ));
  36.  
  37. #endif
  38. #endif    /* !defined(TupSizIncluded) */
  39.