diff options
Diffstat (limited to 'dmagick/c/quantum.d')
| -rw-r--r-- | dmagick/c/quantum.d | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dmagick/c/quantum.d b/dmagick/c/quantum.d index 2a48c0a..c9c00ef 100644 --- a/dmagick/c/quantum.d +++ b/dmagick/c/quantum.d @@ -7,11 +7,14 @@ import dmagick.c.magickType; extern(C) { + /** + * The endianess of the image when reading the image file. + */ enum EndianType { - UndefinedEndian, - LSBEndian, - MSBEndian + UndefinedEndian, /// Not defined (default). + LSBEndian, /// Little Endian. + MSBEndian /// Big Endian. } enum QuantumAlphaType |
