From e080979186e624ba7fed28ea9a76dfdf4feb635a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 22:47:18 +0100 Subject: change const for the funtion params --- dmagick/c/coder.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dmagick/c/coder.d') 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*); -- cgit v1.2.3