Status.cs 507 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. namespace Standard;
  3. internal enum Status
  4. {
  5. Ok,
  6. GenericError,
  7. InvalidParameter,
  8. OutOfMemory,
  9. ObjectBusy,
  10. InsufficientBuffer,
  11. NotImplemented,
  12. Win32Error,
  13. WrongState,
  14. Aborted,
  15. FileNotFound,
  16. ValueOverflow,
  17. AccessDenied,
  18. UnknownImageFormat,
  19. FontFamilyNotFound,
  20. FontStyleNotFound,
  21. NotTrueTypeFont,
  22. UnsupportedGdiplusVersion,
  23. GdiplusNotInitialized,
  24. PropertyNotFound,
  25. PropertyNotSupported,
  26. ProfileNotFound
  27. }