summaryrefslogtreecommitdiff
path: root/dmagick/c/constitute.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/constitute.d')
-rw-r--r--dmagick/c/constitute.d19
1 files changed, 11 insertions, 8 deletions
diff --git a/dmagick/c/constitute.d b/dmagick/c/constitute.d
index e23e9db..d8bbcb5 100644
--- a/dmagick/c/constitute.d
+++ b/dmagick/c/constitute.d
@@ -6,16 +6,19 @@ import dmagick.c.magickType;
extern(C)
{
+ /**
+ * The size of a pixel component.
+ */
enum StorageType
{
- UndefinedPixel,
- CharPixel,
- DoublePixel,
- FloatPixel,
- IntegerPixel,
- LongPixel,
- QuantumPixel,
- ShortPixel
+ UndefinedPixel, ///
+ CharPixel, /// ditto
+ DoublePixel, /// ditto
+ FloatPixel, /// ditto
+ IntegerPixel, /// ditto
+ LongPixel, /// ditto
+ QuantumPixel, /// ditto
+ ShortPixel /// ditto
}
Image* ConstituteImage(const size_t, const size_t, const(char)*, const StorageType, const(void)*, ExceptionInfo*);