summaryrefslogtreecommitdiff
path: root/dmagick/c/cacheView.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 20:52:03 +0100
committerMike Wey2011-01-09 20:52:03 +0100
commit0bd6744310e0b209f3c5911a4e68d453e867914a (patch)
treea916a4d8151decbb068a6e002049f8ab32550e2c /dmagick/c/cacheView.d
parentcbac78bbec726017355cb455a776f193e7fc3022 (diff)
change the constness of the return types
Diffstat (limited to 'dmagick/c/cacheView.d')
-rw-r--r--dmagick/c/cacheView.d6
1 files changed, 3 insertions, 3 deletions
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*);