summaryrefslogtreecommitdiff
path: root/dmagick/c/compare.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/compare.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/compare.d')
-rw-r--r--dmagick/c/compare.d14
1 files changed, 7 insertions, 7 deletions
diff --git a/dmagick/c/compare.d b/dmagick/c/compare.d
index b2a755f..b9b459a 100644
--- a/dmagick/c/compare.d
+++ b/dmagick/c/compare.d
@@ -19,13 +19,13 @@ extern(C)
RootMeanSquaredErrorMetric
}
- double* GetImageChannelDistortions(Image*, const Image*, const MetricType, ExceptionInfo*);
+ double* GetImageChannelDistortions(Image*, const(Image)*, const MetricType, ExceptionInfo*);
- Image* CompareImageChannels(Image*, const Image*, const ChannelType, const MetricType, double*, ExceptionInfo*);
- Image* CompareImages(Image*, const Image*, const MetricType, double*, ExceptionInfo*);
- Image* SimilarityImage(Image*, const Image*, RectangleInfo*, double*, ExceptionInfo*);
+ Image* CompareImageChannels(Image*, const(Image)*, const ChannelType, const MetricType, double*, ExceptionInfo*);
+ Image* CompareImages(Image*, const(Image)*, const MetricType, double*, ExceptionInfo*);
+ Image* SimilarityImage(Image*, const(Image)*, RectangleInfo*, double*, ExceptionInfo*);
- MagickBooleanType GetImageChannelDistortion(Image*, const Image*, const ChannelType, const MetricType, double*, ExceptionInfo*);
- MagickBooleanType GetImageDistortion(Image*, const Image*, const MetricType, double*, ExceptionInfo*);
- MagickBooleanType IsImagesEqual(Image*, const Image*);
+ MagickBooleanType GetImageChannelDistortion(Image*, const(Image)*, const ChannelType, const MetricType, double*, ExceptionInfo*);
+ MagickBooleanType GetImageDistortion(Image*, const(Image)*, const MetricType, double*, ExceptionInfo*);
+ MagickBooleanType IsImagesEqual(Image*, const(Image)*);
}