summaryrefslogtreecommitdiff
path: root/dmagick/c/property.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/property.d')
-rw-r--r--dmagick/c/property.d24
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)*);
}