MagickWand  6.8.5
MagickWand.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
3  dedicated to making software imaging solutions freely available.
4 
5  You may not use this file except in compliance with the License.
6  obtain a copy of the License at
7 
8  http://www.imagemagick.org/script/license.php
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  MagickWand Application Programming Interface declarations.
17 */
18 
19 #ifndef _MAGICK_WAND_H
20 #define _MAGICK_WAND_H
21 
22 #if defined(__cplusplus) || defined(c_plusplus)
23 extern "C" {
24 #endif
25 
26 #if !defined(_MAGICKWAND_CONFIG_H)
27 # define _MAGICKWAND_CONFIG_H
28 # if !defined(vms) && !defined(macintosh)
29 # include "magick/magick-config.h"
30 # else
31 # include "magick-config.h"
32 # endif
33 #if defined(_magickcore_const) && !defined(const)
34 # define const _magickcore_const
35 #endif
36 #if defined(_magickcore_inline) && !defined(inline)
37 # define inline _magickcore_inline
38 #endif
39 #if defined(_magickcore_restrict) && !defined(restrict)
40 # define restrict _magickcore_restrict
41 #endif
42 # if defined(__cplusplus) || defined(c_plusplus)
43 # undef inline
44 # endif
45 #endif
46 
47 #define MAGICKWAND_CHECK_VERSION(major,minor,micro) \
48  ((MAGICKWAND_MAJOR_VERSION > (major)) || \
49  ((MAGICKWAND_MAJOR_VERSION == (major)) && \
50  (MAGICKWAND_MINOR_VERSION > (minor))) || \
51  ((MAGICKWAND_MAJOR_VERSION == (major)) && \
52  (MAGICKWAND_MINOR_VERSION == (minor)) && \
53  (MAGICKWAND_MICRO_VERSION >= (micro))))
54 
55 #include <stdio.h>
56 #include <stdarg.h>
57 #include <stdlib.h>
58 #include <sys/types.h>
59 
60 #if defined(WIN32) || defined(WIN64)
61 # define MAGICKWAND_WINDOWS_SUPPORT
62 #else
63 # define MAGICKWAND_POSIX_SUPPORT
64 #endif
65 
66 typedef struct _MagickWand
67  MagickWand;
68 
69 #include "wand/method-attribute.h"
70 #include "magick/MagickCore.h"
71 #include "wand/animate.h"
72 #include "wand/compare.h"
73 #include "wand/composite.h"
74 #include "wand/conjure.h"
75 #include "wand/convert.h"
76 #include "wand/deprecate.h"
77 #include "wand/display.h"
78 #include "wand/drawing-wand.h"
79 #include "wand/identify.h"
80 #include "wand/import.h"
81 #include "wand/magick-property.h"
82 #include "wand/magick-image.h"
83 #include "wand/mogrify.h"
84 #include "wand/montage.h"
85 #include "wand/pixel-iterator.h"
86 #include "wand/pixel-wand.h"
87 #include "wand/stream.h"
88 #include "wand/wand-view.h"
89 
90 extern WandExport char
91  *MagickGetException(const MagickWand *,ExceptionType *);
92 
93 extern WandExport ExceptionType
95 
96 extern WandExport MagickBooleanType
97  IsMagickWand(const MagickWand *),
99  MagickSetIteratorIndex(MagickWand *,const ssize_t);
100 
101 extern WandExport MagickWand
102  *CloneMagickWand(const MagickWand *),
104  *NewMagickWand(void),
105  *NewMagickWandFromImage(const Image *);
106 
107 extern WandExport ssize_t
109 
110 extern WandExport void
112  MagickWandGenesis(void),
113  MagickWandTerminus(void),
114  *MagickRelinquishMemory(void *),
118 
119 #if defined(__cplusplus) || defined(c_plusplus)
120 }
121 #endif
122 
123 #endif