diff options
| author | Mike Wey | 2011-01-09 20:52:03 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 20:52:03 +0100 |
| commit | 0bd6744310e0b209f3c5911a4e68d453e867914a (patch) | |
| tree | a916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/magick.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/magick.d')
| -rw-r--r-- | dmagick/c/magick.d | 6 |
1 files changed, 3 insertions, 3 deletions
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*); |
