From 0bd6744310e0b209f3c5911a4e68d453e867914a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 20:52:03 +0100 Subject: change the constness of the return types --- dmagick/c/magickDelegate.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dmagick/c/magickDelegate.d') diff --git a/dmagick/c/magickDelegate.d b/dmagick/c/magickDelegate.d index e458c33..12c1d55 100644 --- a/dmagick/c/magickDelegate.d +++ b/dmagick/c/magickDelegate.d @@ -36,10 +36,10 @@ extern(C) 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*); -- cgit v1.2.3