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/compare.d | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'dmagick/c/compare.d') 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)*); } -- cgit v1.2.3