Go to the documentation of this file.
19 #ifndef _MAGICKCORE_CORE_H
20 #define _MAGICKCORE_CORE_H
22 #if defined(__cplusplus) || defined(c_plusplus)
26 #if !defined(_MAGICKCORE_CONFIG_H)
27 # define _MAGICKCORE_CONFIG_H
28 # if !defined(vms) && !defined(macintosh)
33 #if defined(_magickcore_const) && !defined(const)
34 # define const _magickcore_const
36 #if defined(_magickcore_inline) && !defined(inline)
37 # define inline _magickcore_inline
39 #if defined(_magickcore_restrict) && !defined(restrict)
40 # define restrict _magickcore_restrict
42 # if defined(__cplusplus) || defined(c_plusplus)
47 #define MAGICKCORE_CHECK_VERSION(major,minor,micro) \
48 ((MAGICKCORE_MAJOR_VERSION > (major)) || \
49 ((MAGICKCORE_MAJOR_VERSION == (major)) && \
50 (MAGICKCORE_MINOR_VERSION > (minor))) || \
51 ((MAGICKCORE_MAJOR_VERSION == (major)) && \
52 (MAGICKCORE_MINOR_VERSION == (minor)) && \
53 (MAGICKCORE_MICRO_VERSION >= (micro))))
58 #include <sys/types.h>
61 #if defined(WIN32) || defined(WIN64)
62 # define MAGICKCORE_WINDOWS_SUPPORT
64 # define MAGICKCORE_POSIX_SUPPORT
69 #if defined(MAGICKCORE_NAMESPACE_PREFIX)
159 #if defined(__cplusplus) || defined(c_plusplus)