From e080979186e624ba7fed28ea9a76dfdf4feb635a Mon Sep 17 00:00:00 2001 From: Mike Wey Date: Sun, 9 Jan 2011 22:47:18 +0100 Subject: change const for the funtion params --- dmagick/c/cacheView.d | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'dmagick/c/cacheView.d') 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*); } -- cgit v1.2.3