| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | #ifndef _MAGICKCORE_CACHE_H |
|---|
| 19 | #define _MAGICKCORE_CACHE_H |
|---|
| 20 | |
|---|
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 22 | extern "C" { |
|---|
| 23 | #endif |
|---|
| 24 | |
|---|
| 25 | #include "magick/blob.h" |
|---|
| 26 | |
|---|
| 27 | extern MagickExport const PixelPacket |
|---|
| 28 | *AcquireCacheNexus(const Image *,const VirtualPixelMethod,const long, |
|---|
| 29 | const long,const unsigned long,const unsigned long,const unsigned long, |
|---|
| 30 | ExceptionInfo *); |
|---|
| 31 | |
|---|
| 32 | extern MagickExport MagickSizeType |
|---|
| 33 | GetPixelCacheArea(const Image *); |
|---|
| 34 | |
|---|
| 35 | extern MagickExport MagickBooleanType |
|---|
| 36 | PersistCache(Image *,const char *,const MagickBooleanType,MagickOffsetType *, |
|---|
| 37 | ExceptionInfo *), |
|---|
| 38 | SyncCacheNexus(Image *,const unsigned long); |
|---|
| 39 | |
|---|
| 40 | extern MagickExport PixelPacket |
|---|
| 41 | *GetCacheNexus(Image *,const long,const long,const unsigned long, |
|---|
| 42 | const unsigned long,const unsigned long), |
|---|
| 43 | *SetCacheNexus(Image *,const long,const long,const unsigned long, |
|---|
| 44 | const unsigned long,const unsigned long); |
|---|
| 45 | |
|---|
| 46 | extern MagickExport VirtualPixelMethod |
|---|
| 47 | GetCacheVirtualPixelMethod(const Image *), |
|---|
| 48 | SetCacheVirtualPixelMethod(const Image *,const VirtualPixelMethod); |
|---|
| 49 | |
|---|
| 50 | extern MagickExport void |
|---|
| 51 | DestroyCacheResources(void); |
|---|
| 52 | |
|---|
| 53 | #if defined(__cplusplus) || defined(c_plusplus) |
|---|
| 54 | } |
|---|
| 55 | #endif |
|---|
| 56 | |
|---|
| 57 | #endif |
|---|