Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
978 B

  1. /*
  2. * Adobe Universal Font Library
  3. *
  4. * Copyright (c) 1996 Adobe Systems Inc.
  5. * All Rights Reserved
  6. *
  7. * UFLErr.h -- List of UFL errors
  8. *
  9. *
  10. * $Header:
  11. */
  12. #ifndef _H_UFLErr
  13. #define _H_UFLErr
  14. typedef enum {
  15. kNoErr = 0,
  16. /* Beginning of the known error codes */
  17. kErrInvalidArg,
  18. kErrInvalidHandle,
  19. kErrInvalidFontType,
  20. kErrInvalidState,
  21. kErrInvalidParam,
  22. kErrOutOfMemory,
  23. kErrBadTable,
  24. kErrCreateFontHeader,
  25. kErrAddCharString,
  26. kErrReadFile,
  27. kErrGetGlyphOutline,
  28. kErrOutput,
  29. kErrDownloadProcset,
  30. kErrGetFontData,
  31. kErrProcessCFF,
  32. kErrOSFunctionFailed,
  33. kErrOutOfBoundary,
  34. kErrXCFCall,
  35. /* This is the last known error code. Add any before this. */
  36. kErrNotImplement = 0x1000,
  37. /* End of the known error codes */
  38. /* This is the last resort error code. Don't add any after this. */
  39. kErrUnknown
  40. } UFLErrors;
  41. #endif