MagickCore 7.0.10
WizardsToolkit.h
Go to the documentation of this file.
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.
6 obtain a copy of the License at
7
8 http://www.wizards-toolkit.org/WizardsToolkit/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 Wizard's Toolkit Interface declarations.
17*/
18
19#ifndef _WIZARDSTOOLKIT_H
20#define _WIZARDSTOOLKIT_H
21
22#if defined(__cplusplus) || defined(c_plusplus)
23extern "C" {
24#endif
25
26#if defined(WIN32) || defined(WIN64)
27# define WIZARDSTOOLKIT_WINDOWS_SUPPORT
28#else
29# define WIZARDSTOOLKIT_POSIX_SUPPORT
30#endif
31
32#if !defined(_WIZARDSTOOLKIT_CONFIG_H)
33# define _WIZARDSTOOLKIT_CONFIG_H
34# if !defined(vms) && !defined(macintosh)
35# include "wizard/wizard-config.h"
36# else
37# include "wizard-config.h"
38# endif
39#if defined(_wizardstoolkit_const) && !defined(const)
40# define const _wizardstoolkit_const
41#endif
42#if defined(_wizardstoolkit_inline) && !defined(inline)
43# define inline _wizardstoolkit_inline
44#endif
45# if defined(__cplusplus) || defined(c_plusplus)
46# undef inline
47# endif
48#endif
49
50#include <stdio.h>
51#include <sys/types.h>
52
54#if defined(WizardMethodPrefix)
55# include "wizard/methods.h"
56#endif
57
58#if !defined(wizard_restrict)
59# if !defined(_wizardcore_restrict)
60# define wizard_restrict restrict
61# else
62# define wizard_restrict _wizardcore_restrict
63# endif
64#endif
65
66#include "wizard/wizard-type.h"
67#include "wizard/authenticate.h"
68#include "wizard/blob.h"
69#include "wizard/bzip.h"
70#include "wizard/cipher.h"
71#include "wizard/client.h"
72#include "wizard/configure.h"
73#include "wizard/entropy.h"
74#include "wizard/exception.h"
75#include "wizard/file.h"
76#include "wizard/hash.h"
77#include "wizard/hashmap.h"
78#include "wizard/key.h"
79#include "wizard/keyring.h"
80#include "wizard/locale_.h"
81#include "wizard/log.h"
82#include "wizard/magick.h"
83#include "wizard/memory_.h"
84#include "wizard/mime.h"
85#include "wizard/option.h"
86#include "wizard/passphrase.h"
87#include "wizard/resource_.h"
88#include "wizard/semaphore.h"
89#include "wizard/secret.h"
90#include "wizard/splay-tree.h"
91#include "wizard/string_.h"
92#include "wizard/timer.h"
93#include "wizard/token.h"
94#include "wizard/utility.h"
95#include "wizard/version.h"
96#include "wizard/wizard.h"
97#include "wizard/xml-tree.h"
98#include "wizard/zip.h"
99
100#if defined(__cplusplus) || defined(c_plusplus)
101}
102#endif
103
104#endif