diff options
| author | Mike Wey | 2011-10-30 17:28:07 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-10-30 17:28:07 +0100 |
| commit | e2b7ac4bdd423f8fd658db359ca9d0ed800b289f (patch) | |
| tree | 122cfd01b3aefe2933889f33ec1c930b40059b24 /dmagick/c/quantum.d | |
| parent | ca660474dedc00bd0527b4c2b791d67cb0117f4c (diff) | |
Even more Documentation.
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 |
