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/magickDelegate.d | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'dmagick/c/magickDelegate.d') diff --git a/dmagick/c/magickDelegate.d b/dmagick/c/magickDelegate.d index 12c1d55..8b1f544 100644 --- a/dmagick/c/magickDelegate.d +++ b/dmagick/c/magickDelegate.d @@ -33,19 +33,19 @@ extern(C) signature; } - char* GetDelegateCommand(const ImageInfo*, Image*, const char*, const char*, ExceptionInfo*); - char** GetDelegateList(const char *,size_t *,ExceptionInfo *); + char* GetDelegateCommand(const(ImageInfo)*, Image*, const(char)*, const(char)*, ExceptionInfo*); + char** GetDelegateList(const(char)*,size_t *,ExceptionInfo *); - const(char)* GetDelegateCommands(const DelegateInfo*); + const(char)* GetDelegateCommands(const(DelegateInfo)*); - const(DelegateInfo)* GetDelegateInfo(const char*, const char*, ExceptionInfo* exception); - const(DelegateInfo)** GetDelegateInfoList(const char*, size_t*, ExceptionInfo*); + const(DelegateInfo)* GetDelegateInfo(const(char)*, const(char)*, ExceptionInfo* exception); + const(DelegateInfo)** GetDelegateInfoList(const(char)*, size_t*, ExceptionInfo*); - ssize_t GetDelegateMode(const DelegateInfo*); + ssize_t GetDelegateMode(const(DelegateInfo)*); MagickBooleanType DelegateComponentGenesis(); - MagickBooleanType GetDelegateThreadSupport(const DelegateInfo*); - MagickBooleanType InvokeDelegate(ImageInfo*, Image*, const char*, const char*, ExceptionInfo*); + MagickBooleanType GetDelegateThreadSupport(const(DelegateInfo)*); + MagickBooleanType InvokeDelegate(ImageInfo*, Image*, const(char)*, const(char)*, ExceptionInfo*); MagickBooleanType ListDelegateInfo(FILE*, ExceptionInfo*); void DelegateComponentTerminus(); -- cgit v1.2.3