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/cipher.d | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dmagick/c/cipher.d') diff --git a/dmagick/c/cipher.d b/dmagick/c/cipher.d index be48b7a..0198da5 100644 --- a/dmagick/c/cipher.d +++ b/dmagick/c/cipher.d @@ -7,8 +7,8 @@ import dmagick.c.magickType; extern(C) { - MagickBooleanType DecipherImage(Image*, const char*, ExceptionInfo*); - MagickBooleanType EncipherImage(Image*, const char*, ExceptionInfo*); - MagickBooleanType PasskeyDecipherImage(Image*, const StringInfo*, ExceptionInfo*); - MagickBooleanType PasskeyEncipherImage(Image*, const StringInfo*, ExceptionInfo*); + MagickBooleanType DecipherImage(Image*, const(char)*, ExceptionInfo*); + MagickBooleanType EncipherImage(Image*, const(char)*, ExceptionInfo*); + MagickBooleanType PasskeyDecipherImage(Image*, const(StringInfo)*, ExceptionInfo*); + MagickBooleanType PasskeyEncipherImage(Image*, const(StringInfo)*, ExceptionInfo*); } -- cgit v1.2.3