MagickCore 7.1.1
Convert, Edit, Or Compose Bitmap Images
Loading...
Searching...
No Matches
MagickCore.h
1/*
2 Copyright @ 1999 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. You may
6 obtain a copy of the License at
7
8 https://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 MagickCore Application Programming Interface declarations.
17*/
18
19#ifndef MAGICKCORE_CORE_H
20#define MAGICKCORE_CORE_H
21
22#if defined(__cplusplus) || defined(c_plusplus)
23extern "C" {
24#endif
25
26#if !defined(MAGICKCORE_CONFIG_H)
27# define MAGICKCORE_CONFIG_H
28# if !defined(vms)
29# include "MagickCore/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(magick_restrict)
40# if !defined(_magickcore_restrict)
41# define magick_restrict restrict
42# else
43# define magick_restrict _magickcore_restrict
44# endif
45#endif
46# if defined(__cplusplus) || defined(c_plusplus)
47# undef inline
48# endif
49#endif
50
51#define MAGICKCORE_CHECK_VERSION(major,minor,micro) \
52 ((MAGICKCORE_MAJOR_VERSION > (major)) || \
53 ((MAGICKCORE_MAJOR_VERSION == (major)) && \
54 (MAGICKCORE_MINOR_VERSION > (minor))) || \
55 ((MAGICKCORE_MAJOR_VERSION == (major)) && \
56 (MAGICKCORE_MINOR_VERSION == (minor)) && \
57 (MAGICKCORE_MICRO_VERSION >= (micro))))
58
59#include <stdio.h>
60#include <stdarg.h>
61#include <stdlib.h>
62#include <stdint.h>
63#include <math.h>
64#include <sys/types.h>
65#include <time.h>
66
67#if defined(WIN32) || defined(WIN64)
68# define MAGICKCORE_WINDOWS_SUPPORT
69#else
70# define MAGICKCORE_POSIX_SUPPORT
71#endif
72
73#include "MagickCore/method-attribute.h"
74
75#if defined(MAGICKCORE_NAMESPACE_PREFIX)
76# include "MagickCore/methods.h"
77#endif
78#include "MagickCore/magick-type.h"
79#include "MagickCore/animate.h"
80#include "MagickCore/annotate.h"
81#include "MagickCore/artifact.h"
82#include "MagickCore/attribute.h"
83#include "MagickCore/blob.h"
84#include "MagickCore/cache.h"
85#include "MagickCore/cache-view.h"
86#include "MagickCore/channel.h"
87#include "MagickCore/cipher.h"
88#include "MagickCore/client.h"
89#include "MagickCore/coder.h"
90#include "MagickCore/color.h"
91#include "MagickCore/colorspace.h"
92#include "MagickCore/colormap.h"
93#include "MagickCore/compare.h"
94#include "MagickCore/composite.h"
95#include "MagickCore/compress.h"
96#include "MagickCore/configure.h"
97#include "MagickCore/constitute.h"
98#include "MagickCore/decorate.h"
99#include "MagickCore/delegate.h"
100#include "MagickCore/deprecate.h"
101#include "MagickCore/display.h"
102#include "MagickCore/distort.h"
103#include "MagickCore/distribute-cache.h"
104#include "MagickCore/draw.h"
105#include "MagickCore/effect.h"
106#include "MagickCore/enhance.h"
107#include "MagickCore/exception.h"
108#include "MagickCore/feature.h"
109#include "MagickCore/fourier.h"
110#include "MagickCore/fx.h"
111#include "MagickCore/gem.h"
112#include "MagickCore/geometry.h"
113#include "MagickCore/histogram.h"
114#include "MagickCore/identify.h"
115#include "MagickCore/image.h"
116#include "MagickCore/image-view.h"
117#include "MagickCore/layer.h"
118#include "MagickCore/linked-list.h"
119#include "MagickCore/list.h"
120#include "MagickCore/locale_.h"
121#include "MagickCore/log.h"
122#include "MagickCore/magic.h"
123#include "MagickCore/magick.h"
124#include "MagickCore/matrix.h"
125#include "MagickCore/memory_.h"
126#include "MagickCore/module.h"
127#include "MagickCore/mime.h"
128#include "MagickCore/monitor.h"
129#include "MagickCore/montage.h"
130#include "MagickCore/morphology.h"
131#include "MagickCore/opencl.h"
132#include "MagickCore/option.h"
133#include "MagickCore/paint.h"
134#include "MagickCore/pixel.h"
135#include "MagickCore/pixel-accessor.h"
136#include "MagickCore/policy.h"
137#include "MagickCore/prepress.h"
138#include "MagickCore/profile.h"
139#include "MagickCore/property.h"
140#include "MagickCore/quantize.h"
141#include "MagickCore/quantum.h"
142#include "MagickCore/registry.h"
143#include "MagickCore/random_.h"
144#include "MagickCore/resample.h"
145#include "MagickCore/resize.h"
146#include "MagickCore/resource_.h"
147#include "MagickCore/segment.h"
148#include "MagickCore/shear.h"
149#include "MagickCore/signature.h"
150#include "MagickCore/splay-tree.h"
151#include "MagickCore/static.h"
152#include "MagickCore/statistic.h"
153#include "MagickCore/stream.h"
154#include "MagickCore/string_.h"
155#include "MagickCore/timer.h"
156#include "MagickCore/token.h"
157#include "MagickCore/transform.h"
158#include "MagickCore/threshold.h"
159#include "MagickCore/type.h"
160#include "MagickCore/utility.h"
161#include "MagickCore/version.h"
162#include "MagickCore/vision.h"
163#include "MagickCore/visual-effects.h"
164#include "MagickCore/xml-tree.h"
165#include "MagickCore/xwindow.h"
166
167#if defined(__cplusplus) || defined(c_plusplus)
168}
169#endif
170
171#endif