home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 170_01 / isam.c < prev    next >
Text File  |  1979-12-31  |  640b  |  25 lines

  1. /*
  2. **                 ISAMC - Written by John M. Dashner
  3. */
  4.  
  5. /*
  6. **                  Global Data Module
  7. */
  8.  
  9. int isam_err;       /* error returns from isam routines */
  10.  
  11. char *isam_msg[] =  /* error messages for each defined error */
  12. {
  13.     "No Error",
  14.     "Record Not Found",
  15.     "Exceeded File Boundary",
  16.     "Not Defined",
  17.     "Key Length Invalid",
  18.     "Not Defined",
  19.     "Not Defined",
  20.     "Created New Index",
  21.     "I/O Error",
  22.     "Insufficient Storage for Control Blocks"
  23. };
  24.  
  25.