home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / CLIPB51.ZIP / C5P78.EXE / INCLUDE / ERROR.CH < prev    next >
Encoding:
Text File  |  1990-05-24  |  878 b   |  41 lines

  1. /***
  2. *       error.ch
  3. *       Clipper 5.0 generic error codes
  4. *       Copyright (c) 1990 Nantucket Corp.  All rights reserved.
  5. */
  6.  
  7. // Generic error codes
  8. #define EG_ARG                1
  9. #define EG_BOUND            2
  10. #define EG_STROVERFLOW        3
  11. #define EG_NUMOVERFLOW        4
  12. #define EG_ZERODIV            5
  13. #define EG_NUMERR            6
  14. #define EG_SYNTAX            7
  15. #define EG_COMPLEXITY        8
  16.  
  17. #define EG_MEM                11
  18. #define EG_NOFUNC            12
  19. #define EG_NOMETHOD            13
  20. #define EG_NOVAR            14
  21. #define EG_NOALIAS            15
  22.  
  23. #define EG_CREATE            20
  24. #define EG_OPEN                21
  25. #define EG_CLOSE            22
  26. #define EG_READ                23
  27. #define EG_WRITE            24
  28. #define EG_PRINT            25
  29.  
  30. #define EG_UNSUPPORTED        30
  31. #define EG_LIMIT            31
  32. #define EG_CORRUPTION        32
  33. #define EG_DATATYPE            33
  34. #define EG_DATAWIDTH        34
  35. #define EG_NOTABLE            35
  36. #define EG_NOORDER            36
  37. #define EG_SHARED            37
  38. #define EG_UNLOCKED            38
  39. #define EG_READONLY            39
  40.  
  41.