home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / FOXPRO / TABLES / TBLSRC / TABLE.HDR < prev    next >
Text File  |  1992-12-03  |  1KB  |  33 lines

  1. * Program   :Table.hdr
  2. * Author    :Mark D. Miller
  3. * Date      :12-Nov-1992
  4. * Notice    : Copyright (c) 12-Nov-1992 by Mark D. Miller
  5. *             All Rights Reserved.
  6. * Notes     :Prototypes for the table routines
  7.  
  8. FUNCTION LOGICAL InitTable      PROTOTYPE
  9.     PARAMETERS  const CHAR( 8 ) name
  10.  
  11. FUNCTION UINT Table             PROTOTYPE
  12.     PARAMETERS  CONST   CHAR( 8 )   name,;
  13.                 const   UINT        TableRow,;
  14.                 const   UINT        TableCol,;
  15.                 const   INT         length,;
  16.                         CHAR( 4 )   pkey
  17.  
  18. FUNCTION LOGICAL VerifyTable    PROTOTYPE
  19.     PARAMETERS const    CHAR( 8 )   name,;
  20.                const    UINT        TableRow,;
  21.                const    UINT        TableCol,;
  22.                const    INT         length,;
  23.                         CHAR( 4 )   pkey
  24.  
  25. procedure ShowTable             PROTOTYPE
  26.     PARAMETERS const    CHAR( 8 )   name,;
  27.                const    UINT        TableRow,;
  28.                const    UINT        TableCol,;
  29.                const    INT         length,;
  30.                         CHAR( 4 )   pkey
  31.  
  32. PROCEDURE ClearTable            PROTOTYPE
  33.