19 #ifndef _MAGICK_WAND_H
20 #define _MAGICK_WAND_H
22 #if defined(__cplusplus) || defined(c_plusplus)
26 #if !defined(_MAGICKWAND_CONFIG_H)
27 # define _MAGICKWAND_CONFIG_H
28 # if !defined(vms) && !defined(macintosh)
29 # include "magick/magick-config.h"
31 # include "magick-config.h"
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 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))))
59 #include <sys/types.h>
62 #if defined(WIN32) || defined(WIN64)
63 # define MAGICKWAND_WINDOWS_SUPPORT
65 # define MAGICKWAND_POSIX_SUPPORT
72 #include "magick/MagickCore.h"
122 #if defined(__cplusplus) || defined(c_plusplus)
WandExport void MagickWandTerminus(void)
WandExport MagickBooleanType IsMagickWand(const MagickWand *)
WandExport MagickWand * DestroyMagickWand(MagickWand *)
WandExport ssize_t MagickGetIteratorIndex(MagickWand *)
Definition: magick-wand.c:367
WandExport ExceptionType MagickGetExceptionType(const MagickWand *)
Definition: magick-wand.c:335
WandExport void MagickSetFirstIterator(MagickWand *)
#define WandExport
Definition: method-attribute.h:92
WandExport void * MagickRelinquishMemory(void *)
WandExport void ClearMagickWand(MagickWand *)
WandExport void MagickResetIterator(MagickWand *)
WandExport MagickBooleanType MagickSetIteratorIndex(MagickWand *, const ssize_t)
Definition: magick-wand.c:925
WandExport MagickWand * NewMagickWand(void)
Definition: magick-wand-private.h:50
WandExport MagickBooleanType MagickClearException(MagickWand *)
WandExport MagickBooleanType IsMagickWandInstantiated(void)
WandExport void MagickWandGenesis(void)
WandExport char * MagickGetException(const MagickWand *, ExceptionType *)
Definition: magick-wand.c:278
WandExport MagickWand * CloneMagickWand(const MagickWand *)
WandExport void MagickSetLastIterator(MagickWand *)
Definition: magick-wand.c:979
WandExport MagickWand * NewMagickWandFromImage(const Image *)
Definition: magick-wand.c:1115