summaryrefslogtreecommitdiff
path: root/dmagick/c/coder.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/coder.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/coder.d')
-rw-r--r--dmagick/c/coder.d6
1 files changed, 3 insertions, 3 deletions
diff --git a/dmagick/c/coder.d b/dmagick/c/coder.d
index f7990b2..58de630 100644
--- a/dmagick/c/coder.d
+++ b/dmagick/c/coder.d
@@ -26,10 +26,10 @@ extern(C)
signature;
}
- char** GetCoderList(const char*, size_t*, ExceptionInfo*);
+ char** GetCoderList(const(char)*, size_t*, ExceptionInfo*);
- const(CoderInfo)* GetCoderInfo(const char*, ExceptionInfo*);
- const(CoderInfo)** GetCoderInfoList(const char*, size_t*, ExceptionInfo*);
+ const(CoderInfo)* GetCoderInfo(const(char)*, ExceptionInfo*);
+ const(CoderInfo)** GetCoderInfoList(const(char)*, size_t*, ExceptionInfo*);
MagickBooleanType CoderComponentGenesis();
MagickBooleanType ListCoderInfo(FILE*, ExceptionInfo*);