1 #ifndef DISKFONT_OTERRORS_H
    2 #define DISKFONT_OTERRORS_H
    3 
    4 /*
    5 	outline errors
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 
   11 #define OTERR_Failure      -1
   12 #define OTERR_Success       0
   13 #define OTERR_BadTag        1
   14 #define OTERR_UnknownTag    2
   15 #define OTERR_BadData       3
   16 #define OTERR_NoMemory      4
   17 #define OTERR_NoFace        5
   18 #define OTERR_BadFace       6
   19 #define OTERR_NoGlyph       7
   20 #define OTERR_BadGlyph      8
   21 #define OTERR_NoShear       9
   22 #define OTERR_NoRotate      10
   23 #define OTERR_TooSmall      11
   24 #define OTERR_UnknownGlyph  12
   25 
   26 
   27 #endif /* DISKFONT_OTERRORS_H */