home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpentk.zip / WBPENTK4.DSK / IDRERROR.H < prev    next >
C/C++ Source or Header  |  1994-10-06  |  1KB  |  33 lines

  1. /*********************************************************************
  2. **  IDRERR.H
  3. **
  4. **  Error defines for IDR (Input Data Recognition) objects
  5. **********************************************************************
  6. */
  7. #ifndef _idrerror_h_
  8. #define _idrerror_h_
  9.  
  10. #define IDRERR_BASE             0x7300
  11.  
  12. #define IDRERR_FIRST            (IDRERR_BASE)
  13. #define IDRERR_LAST             0x73ff
  14.  
  15. #define IDRERR_ERROR            (IDRERR_BASE)        /* generic failure    */
  16.  
  17. /**RA** This is the set that was documented as public */
  18.  
  19. #define IDRERR_BUF_TOO_SMALL       (IDRERR_BASE +  1) /* Input buffer too small */
  20. #define IDRERR_NO_RESULTS_AVAIL    (IDRERR_BASE +  2) /* No results available */
  21. #define IDRERR_INVALID_PARM        (IDRERR_BASE +  3) /* Invalid parameter */
  22. #define IDRERR_INVALID_STATE       (IDRERR_BASE +  4) /* Invalid state */
  23. #define IDRERR_INVALID_HANDLE      (IDRERR_BASE +  5) /* Invalid wordlist handle */
  24. #define IDRERR_ALREADY_EXISTS      (IDRERR_BASE +  6) /* Global wordlist name already exists */
  25. #define IDRERR_NOT_FOUND           (IDRERR_BASE +  7) /* Global wordlist name not found */
  26.  
  27. /**RA** These might want to be public */
  28.  
  29. #define IDRERR_SYMSETUNDEFINED     (IDRERR_BASE +  8) /* Symbol subset not valid or not defined */
  30.  
  31.  
  32. #endif /* _idrerror_h_ */
  33.