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/property.d | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'dmagick/c/property.d') diff --git a/dmagick/c/property.d b/dmagick/c/property.d index 7e543fb..e3fdfb0 100644 --- a/dmagick/c/property.d +++ b/dmagick/c/property.d @@ -7,20 +7,20 @@ import dmagick.c.magickType; extern(C) { - char* GetNextImageProperty(const Image*); - char* InterpretImageProperties(const ImageInfo*, Image*, const char*); - char* RemoveImageProperty(Image*, const char*); + char* GetNextImageProperty(const(Image)*); + char* InterpretImageProperties(const(ImageInfo)*, Image*, const(char)*); + char* RemoveImageProperty(Image*, const(char)*); - const(char)* GetImageProperty(const Image*, const char*); - const(char)* GetMagickProperty(const ImageInfo*, Image*, const char*); + const(char)* GetImageProperty(const(Image)*, const(char)*); + const(char)* GetMagickProperty(const(ImageInfo)*, Image*, const(char)*); - MagickBooleanType CloneImageProperties(Image*, const Image*); - MagickBooleanType DefineImageProperty(Image*, const char*); - MagickBooleanType DeleteImageProperty(Image*, const char*); - MagickBooleanType FormatImageProperty(Image*, const char*, const char*, ...); - MagickBooleanType FormatImagePropertyList(Image*, const char*, const char*, va_list); - MagickBooleanType SetImageProperty(Image*, const char*, const char*); + MagickBooleanType CloneImageProperties(Image*, const(Image)*); + MagickBooleanType DefineImageProperty(Image*, const(char)*); + MagickBooleanType DeleteImageProperty(Image*, const(char)*); + MagickBooleanType FormatImageProperty(Image*, const(char)*, const(char)*, ...); + MagickBooleanType FormatImagePropertyList(Image*, const(char)*, const(char)*, va_list); + MagickBooleanType SetImageProperty(Image*, const(char)*, const(char)*); void DestroyImageProperties(Image*); - void ResetImagePropertyIterator(const Image*); + void ResetImagePropertyIterator(const(Image)*); } -- cgit v1.2.3