From e080979186e624ba7fed28ea9a76dfdf4feb635a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 22:47:18 +0100 Subject: change const for the funtion params --- dmagick/c/attribute.d | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'dmagick/c/attribute.d') 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); } -- cgit v1.2.3