home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / include / exec / errors.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  731 b   |  25 lines

  1. #ifndef EXEC_ERRORS_H
  2. #define EXEC_ERRORS_H 1
  3. /*
  4. ** errors.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/02/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. #define IOERR_OPENFAIL   (-1) /* device/unit failed to open */
  17. #define IOERR_ABORTED    (-2) /* request terminated early [after AbortIO()] */
  18. #define IOERR_NOCMD  (-3) /* command not supported by device */
  19. #define IOERR_BADLENGTH  (-4) /* not a valid length (usually IO_LENGTH) */
  20. #define IOERR_BADADDRESS (-5) /* invalid address (misaligned or bad range) */
  21. #define IOERR_UNITBUSY   (-6) /* device opens ok,  but requested unit is busy */
  22. #define IOERR_SELFTEST   (-7) /* hardware failed self-test */
  23.  
  24. #endif  /* EXEC_ERRORS_H */
  25.