home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / at-inc-bin.lha / os-include / diskfont / oterrors.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  1KB  |  30 lines

  1. #ifndef  DISKFONT_OTERRORS_H
  2. #define  DISKFONT_OTERRORS_H
  3. /*
  4. **    $VER: oterrors.h 8.1 (19.6.92)
  5. **    Includes Release 40.15
  6. **
  7. **    oterrors.h -- error results from outline libraries
  8. **
  9. **    (C) Copyright 1991-1992 Robert R. Burns
  10. **        All Rights Reserved
  11. */
  12.  
  13. /* PRELIMINARY */
  14. #define  OTERR_Failure        -1    /* catch-all for error */
  15. #define  OTERR_Success        0    /* no error */
  16. #define  OTERR_BadTag        1    /* inappropriate tag for function */
  17. #define  OTERR_UnknownTag    2    /* unknown tag for function */
  18. #define  OTERR_BadData        3    /* catch-all for bad tag data */
  19. #define  OTERR_NoMemory        4    /* insufficient memory for operation */
  20. #define  OTERR_NoFace        5    /* no typeface currently specified */
  21. #define  OTERR_BadFace        6    /* typeface specification problem */
  22. #define  OTERR_NoGlyph        7    /* no glyph specified */
  23. #define  OTERR_BadGlyph        8    /* bad glyph code or glyph range */
  24. #define  OTERR_NoShear        9    /* shear only partially specified */
  25. #define  OTERR_NoRotate        10    /* rotate only partially specified */
  26. #define  OTERR_TooSmall        11    /* typeface metrics yield tiny glyphs */
  27. #define  OTERR_UnknownGlyph    12    /* glyph not known by engine */
  28.  
  29. #endif     /* DISKFONT_OTERRORS_H */
  30.