home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / FOXPRO / TABLES / TABLE.HDR < prev    next >
Text File  |  1992-11-12  |  896b  |  26 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 ClearTable            PROTOTYPE
  26.