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/locale.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dmagick/c/locale.d') diff --git a/dmagick/c/locale.d b/dmagick/c/locale.d index 73f1a11..2cb2296 100644 --- a/dmagick/c/locale.d +++ b/dmagick/c/locale.d @@ -28,10 +28,10 @@ extern(C) char** GetLocaleList(const char*, size_t*, ExceptionInfo*); - const(char*) GetLocaleMessage(const char*); + const(char)* GetLocaleMessage(const char*); - const(LocaleInfo*) GetLocaleInfo_(const char*, ExceptionInfo*); - const(LocaleInfo**) GetLocaleInfoList(const char*, size_t*, ExceptionInfo*); + const(LocaleInfo)* GetLocaleInfo_(const char*, ExceptionInfo*); + const(LocaleInfo)** GetLocaleInfoList(const char*, size_t*, ExceptionInfo*); LinkedListInfo* DestroyLocaleOptions(LinkedListInfo*); LinkedListInfo* GetLocaleOptions(const char*, ExceptionInfo*); -- cgit v1.2.3