home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / diskfont / oterrors.h < prev   
Encoding:
C/C++ Source or Header  |  1995-01-10  |  624 b   |  30 lines

  1. #ifndef DISKFONT_OTERRORS_H
  2. #define DISKFONT_OTERRORS_H
  3. /*
  4. ** $VER: oterrors.h 8.1 (19.06.92)
  5. ** Includes Release 38.56
  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.  
  14. #define OTERR_Failure -1 
  15. #define OTERR_Success 0 
  16. #define OTERR_BadTag 1 
  17. #define OTERR_UnknownTag 2 
  18. #define OTERR_BadData 3 
  19. #define OTERR_NoMemory 4 
  20. #define OTERR_NoFace 5 
  21. #define OTERR_BadFace 6 
  22. #define OTERR_NoGlyph 7 
  23. #define OTERR_BadGlyph 8 
  24. #define OTERR_NoShear 9 
  25. #define OTERR_NoRotate 10 
  26. #define OTERR_TooSmall 11 
  27. #define OTERR_UnknownGlyph 12 
  28.  
  29. #endif 
  30.