summaryrefslogtreecommitdiff
path: root/dmagick/c/cacheView.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/cacheView.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/cacheView.d')
-rw-r--r--dmagick/c/cacheView.d24
1 files changed, 12 insertions, 12 deletions
diff --git a/dmagick/c/cacheView.d b/dmagick/c/cacheView.d
index 53ae290..ee46f76 100644
--- a/dmagick/c/cacheView.d
+++ b/dmagick/c/cacheView.d
@@ -34,33 +34,33 @@ extern(C)
struct CacheView {}
- ClassType GetCacheViewStorageClass(const CacheView*);
+ ClassType GetCacheViewStorageClass(const(CacheView)*);
- ColorspaceType GetCacheViewColorspace(const CacheView*);
+ 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*);
+ ExceptionInfo* GetCacheViewException(const(CacheView)*);
IndexPacket* GetCacheViewAuthenticIndexQueue(CacheView*);
- MagickBooleanType GetOneCacheViewVirtualPixel(const CacheView*, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
- MagickBooleanType GetOneCacheViewVirtualMethodPixel(const CacheView*, const VirtualPixelMethod, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
- MagickBooleanType GetOneCacheViewAuthenticPixel(const CacheView*, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
+ MagickBooleanType GetOneCacheViewVirtualPixel(const(CacheView)*, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
+ MagickBooleanType GetOneCacheViewVirtualMethodPixel(const(CacheView)*, const VirtualPixelMethod, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
+ MagickBooleanType GetOneCacheViewAuthenticPixel(const(CacheView)*, const ssize_t, const ssize_t, PixelPacket*, ExceptionInfo*);
MagickBooleanType SetCacheViewStorageClass(CacheView*, const ClassType);
MagickBooleanType SetCacheViewVirtualPixelMethod(CacheView*, const VirtualPixelMethod);
MagickBooleanType SyncCacheViewAuthenticPixels(CacheView*, ExceptionInfo*);
- MagickSizeType GetCacheViewExtent(const CacheView*);
+ MagickSizeType GetCacheViewExtent(const(CacheView)*);
PixelPacket* GetCacheViewAuthenticPixelQueue(CacheView*);
PixelPacket* GetCacheViewAuthenticPixels(CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*);
PixelPacket* QueueCacheViewAuthenticPixels(CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*);
- CacheView* AcquireCacheView(const Image*);
- CacheView* CloneCacheView(const CacheView*);
+ CacheView* AcquireCacheView(const(Image)*);
+ CacheView* CloneCacheView(const(CacheView)*);
CacheView* DestroyCacheView(CacheView*);
}