From 0bd6744310e0b209f3c5911a4e68d453e867914a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 20:52:03 +0100 Subject: change the constness of the return types --- dmagick/c/magick.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dmagick/c/magick.d') diff --git a/dmagick/c/magick.d b/dmagick/c/magick.d index d343cd2..7a46675 100644 --- a/dmagick/c/magick.d +++ b/dmagick/c/magick.d @@ -74,7 +74,7 @@ extern(C) char** GetMagickList(const char*, size_t*, ExceptionInfo*); - const(char*) GetMagickDescription(const MagickInfo*); + const(char)* GetMagickDescription(const MagickInfo*); DecodeImageHandler* GetImageDecoder(const MagickInfo*); @@ -93,8 +93,8 @@ extern(C) MagickBooleanType MagickComponentGenesis(); MagickBooleanType UnregisterMagickInfo(const char*); - const(MagickInfo*) GetMagickInfo(const char*, ExceptionInfo*); - const(MagickInfo**) GetMagickInfoList(const char*, size_t*, ExceptionInfo*); + const(MagickInfo)* GetMagickInfo(const char*, ExceptionInfo*); + const(MagickInfo)** GetMagickInfoList(const char*, size_t*, ExceptionInfo*); MagickInfo* RegisterMagickInfo(MagickInfo*); MagickInfo* SetMagickInfo(const char*); -- cgit v1.2.3