1234567891011121314151617181920212223242526272829 |
- using System;
- namespace Standard;
- internal enum Status
- {
- Ok,
- GenericError,
- InvalidParameter,
- OutOfMemory,
- ObjectBusy,
- InsufficientBuffer,
- NotImplemented,
- Win32Error,
- WrongState,
- Aborted,
- FileNotFound,
- ValueOverflow,
- AccessDenied,
- UnknownImageFormat,
- FontFamilyNotFound,
- FontStyleNotFound,
- NotTrueTypeFont,
- UnsupportedGdiplusVersion,
- GdiplusNotInitialized,
- PropertyNotFound,
- PropertyNotSupported,
- ProfileNotFound
- }
|