1 #ifndef EXEC_ERRORS_H
    2 #define EXEC_ERRORS_H
    3 
    4 /*
    5 	exec error definitions (V50)
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #define IOERR_OPENFAIL      (-1)
   11 #define IOERR_ABORTED       (-2)
   12 #define IOERR_NOCMD         (-3)
   13 #define IOERR_BADLENGTH     (-4)
   14 #define IOERR_BADADDRESS    (-5)
   15 #define IOERR_UNITBUSY      (-6)
   16 #define IOERR_SELFTEST      (-7)
   17 #define IOERR_NOMEMORY      (-8)
   18 
   19 #endif