summaryrefslogtreecommitdiff
path: root/dmagick/c/constitute.d
diff options
context:
space:
mode:
authorMike Wey2011-10-30 19:27:13 +0100
committerMike Wey2011-10-30 19:27:13 +0100
commitc4a9fb376475c631a185a340d0cc6fabd9b3d0e3 (patch)
tree3723c20c82d516f3c52cc6b11ddffc226f61b41f /dmagick/c/constitute.d
parente2b7ac4bdd423f8fd658db359ca9d0ed800b289f (diff)
All symbos from the headers used by DMagick should now be documented.
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*);