home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 228_01 / isam.c < prev    next >
Text File  |  1987-07-31  |  896b  |  38 lines

  1. /*
  2. HEADER:         CUGXXX;
  3. TITLE:          Global Data Module (of ISAM system);
  4. DATE:           3-31-86;
  5. DESCRIPTION:    Part of ISAM Library;
  6. KEYWORDS:       ISAM;
  7. FILENAME:       ISAM.C;
  8. WARNINGS:       None;
  9. AUTHORS:        John M. Dashner;
  10. COMPILER:       Lattice C;
  11. REFERENCES:     US-DISK 1310;
  12. ENDREF
  13. */
  14. /*
  15. **                 ISAMC - Written by John M. Dashner
  16. */
  17.  
  18. /*
  19. **                  Global Data Module
  20. */
  21.  
  22. int isam_err;       /* error returns from isam routines */
  23.  
  24. char *isam_msg[] =  /* error messages for each defined error */
  25. {
  26.     "No Error",
  27.     "Record Not Found",
  28.     "Exceeded File Boundary",
  29.     "Not Defined",
  30.     "Key Length Invalid",
  31.     "Not Defined",
  32.     "Not Defined",
  33.     "Created New Index",
  34.     "I/O Error",
  35.     "Insufficient Storage for Control Blocks"
  36. };
  37.  
  38.