diff options
Diffstat (limited to 'dmagick/c/attribute.d')
| -rw-r--r-- | dmagick/c/attribute.d | 16 |
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); } |
