summaryrefslogtreecommitdiff
path: root/dmagick/c/attribute.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/attribute.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/attribute.d')
-rw-r--r--dmagick/c/attribute.d16
1 files changed, 8 insertions, 8 deletions
diff --git a/dmagick/c/attribute.d b/dmagick/c/attribute.d
index c827155..dac183f 100644
--- a/dmagick/c/attribute.d
+++ b/dmagick/c/attribute.d
@@ -7,17 +7,17 @@ import dmagick.c.geometry;
extern(C)
{
- ImageType GetImageType(const Image*, ExceptionInfo*);
+ ImageType GetImageType(const(Image)*, ExceptionInfo*);
- MagickBooleanType IsGrayImage(const Image*, ExceptionInfo*);
- MagickBooleanType IsMonochromeImage(const Image*, ExceptionInfo*);
- MagickBooleanType IsOpaqueImage(const Image*, ExceptionInfo*);
+ MagickBooleanType IsGrayImage(const(Image)*, ExceptionInfo*);
+ MagickBooleanType IsMonochromeImage(const(Image)*, ExceptionInfo*);
+ MagickBooleanType IsOpaqueImage(const(Image)*, ExceptionInfo*);
MagickBooleanType SetImageChannelDepth(Image*, const ChannelType, const size_t);
MagickBooleanType SetImageDepth(Image*, const size_t);
- RectangleInfo GetImageBoundingBox(const Image*, ExceptionInfo* exception);
+ RectangleInfo GetImageBoundingBox(const(Image)*, ExceptionInfo* exception);
- size_t GetImageChannelDepth(const Image*, const ChannelType, ExceptionInfo*);
- size_t GetImageDepth(const Image*, ExceptionInfo*);
- size_t GetImageQuantumDepth(const Image*, const MagickBooleanType);
+ size_t GetImageChannelDepth(const(Image)*, const ChannelType, ExceptionInfo*);
+ size_t GetImageDepth(const(Image)*, ExceptionInfo*);
+ size_t GetImageQuantumDepth(const(Image)*, const MagickBooleanType);
}