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/type.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/type.d')
| -rw-r--r-- | dmagick/c/type.d | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dmagick/c/type.d b/dmagick/c/type.d index 61c76dd..0291b18 100644 --- a/dmagick/c/type.d +++ b/dmagick/c/type.d @@ -69,14 +69,14 @@ extern(C) signature; } - char** GetTypeList(const char*, size_t*, ExceptionInfo*); + char** GetTypeList(const(char)*, size_t*, ExceptionInfo*); 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(); } |
