home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP09.EXE / DBFSYTEM.CH < prev   
Encoding:
Text File  |  1991-04-30  |  830 b   |  30 lines

  1. /*
  2.    Listing 9.13. DBFSYTEM.CH: Header file for DBF System Array functions
  3.    Author: Craig Yellick
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11. //  The main system array has four elements
  12. #define SYS_DBFNAME    1
  13. #define SYS_COMMENT    2
  14. #define SYS_STRU       3
  15. #define SYS_NTX        4
  16.  
  17. //  Each SYS_STRU element is an array of five elements
  18. #define STRU_NAME      1
  19. #define STRU_TYPE      2
  20. #define STRU_LEN       3
  21. #define STRU_DEC       4
  22. #define STRU_COMMENT   5
  23.  
  24. //  Each SYS_NTX element is an array of three elements
  25. #define NTX_NAME       1
  26. #define NTX_KEY        2
  27. #define NTX_COMMENT    3
  28.  
  29. // end of file DBFSYTEM.CH
  30.