diff options
| author | Mike Wey | 2011-01-09 22:47:18 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 22:47:18 +0100 |
| commit | e080979186e624ba7fed28ea9a76dfdf4feb635a (patch) | |
| tree | ccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/magic.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/magic.d')
| -rw-r--r-- | dmagick/c/magic.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dmagick/c/magic.d b/dmagick/c/magic.d index 864a0bc..2a35e0d 100644 --- a/dmagick/c/magic.d +++ b/dmagick/c/magic.d @@ -36,15 +36,15 @@ extern(C) signature; } - char** GetMagicList(const char*, size_t*, ExceptionInfo*); + char** GetMagicList(const(char)*, size_t*, ExceptionInfo*); - const(char)* GetMagicName(const MagicInfo*); + const(char)* GetMagicName(const(MagicInfo)*); MagickBooleanType ListMagicInfo(FILE*, ExceptionInfo*); MagickBooleanType MagicComponentGenesis(); - const(MagicInfo)* GetMagicInfo(const ubyte*, const size_t, ExceptionInfo*); - const(MagicInfo)** GetMagicInfoList(const char*, size_t*, ExceptionInfo*); + const(MagicInfo)* GetMagicInfo(const(ubyte)*, const size_t, ExceptionInfo*); + const(MagicInfo)** GetMagicInfoList(const(char)*, size_t*, ExceptionInfo*); void MagicComponentTerminus(); } |
