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/property.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/property.d')
| -rw-r--r-- | dmagick/c/property.d | 24 |
1 files changed, 12 insertions, 12 deletions
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)*); } |
