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/cacheView.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dmagick/c/cacheView.d') diff --git a/dmagick/c/cacheView.d b/dmagick/c/cacheView.d index 7d85a46..53ae290 100644 --- a/dmagick/c/cacheView.d +++ b/dmagick/c/cacheView.d @@ -38,10 +38,10 @@ extern(C) ColorspaceType GetCacheViewColorspace(const CacheView*); - const(IndexPacket*) GetCacheViewVirtualIndexQueue(const CacheView*); + const(IndexPacket)* GetCacheViewVirtualIndexQueue(const CacheView*); - const(PixelPacket*) GetCacheViewVirtualPixels(const CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*); - const(PixelPacket*) GetCacheViewVirtualPixelQueue(const CacheView*); + const(PixelPacket)* GetCacheViewVirtualPixels(const CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*); + const(PixelPacket)* GetCacheViewVirtualPixelQueue(const CacheView*); ExceptionInfo* GetCacheViewException(const CacheView*); -- cgit v1.2.3