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/type.d | |
| parent | cbac78bbec726017355cb455a776f193e7fc3022 (diff) | |
change the constness of the return types
Diffstat (limited to 'dmagick/c/type.d')
| -rw-r--r-- | dmagick/c/type.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dmagick/c/type.d b/dmagick/c/type.d index 2365443..61c76dd 100644 --- a/dmagick/c/type.d +++ b/dmagick/c/type.d @@ -74,9 +74,9 @@ extern(C) MagickBooleanType ListTypeInfo(FILE*, ExceptionInfo*); MagickBooleanType TypeComponentGenesis(); - const(TypeInfo*) GetTypeInfo(const char*, ExceptionInfo*); - const(TypeInfo*) GetTypeInfoByFamily(const char*, const StyleType, const StretchType, const size_t, ExceptionInfo*); - const(TypeInfo**) GetTypeInfoList(const char*, size_t*, ExceptionInfo*); + const(TypeInfo)* GetTypeInfo(const char*, ExceptionInfo*); + const(TypeInfo)* GetTypeInfoByFamily(const char*, const StyleType, const StretchType, const size_t, ExceptionInfo*); + const(TypeInfo)** GetTypeInfoList(const char*, size_t*, ExceptionInfo*); void TypeComponentTerminus(); } |
