/usr/include/ImageMagick-6/wand
NameSizeModeActions
animate.h9520644editdlrm
compare.h9510644editdlrm
composite.h9590644editdlrm
conjure.h9510644editdlrm
convert.h9510644editdlrm
deprecate.h78390644editdlrm
display.h9510644editdlrm
drawing-wand.h99090644editdlrm
identify.h9550644editdlrm
import.h9470644editdlrm
magick-image.h225480644editdlrm
magick-property.h54890644editdlrm
magick-wand.h7920644editdlrm
MagickWand.h35670644editdlrm
magick_wand.h7920644editdlrm
method-attribute.h35820644editdlrm
mogrify.h14850644editdlrm
montage.h9510644editdlrm
pixel-iterator.h20640644editdlrm
pixel-wand.h45860644editdlrm
stream.h9480644editdlrm
wand-view.h24030644editdlrm
Edit: /usr/include/ImageMagick-6/wand/MagickWand.h (3567B)
/* Copyright 1999 ImageMagick Studio LLC, a non-profit organization dedicated to making software imaging solutions freely available. You may not use this file except in compliance with the License. You may obtain a copy of the License at https://imagemagick.org/license/ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. MagickWand Application Programming Interface declarations. */ #ifndef _MAGICK_WAND_H #define _MAGICK_WAND_H #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif #if !defined(MAGICKWAND_CONFIG_H) # define MAGICKWAND_CONFIG_H # if !defined(vms) && !defined(macintosh) # include "magick/magick-config.h" # else # include "magick-config.h" # endif #if defined(_magickcore_const) && !defined(const) # define const _magickcore_const #endif #if defined(_magickcore_inline) && !defined(inline) # define inline _magickcore_inline #endif #if !defined(magick_restrict) # if !defined(_magickcore_restrict) # define magick_restrict restrict # else # define magick_restrict _magickcore_restrict # endif #endif # if defined(__cplusplus) || defined(c_plusplus) # undef inline # endif #endif #define MAGICKWAND_CHECK_VERSION(major,minor,micro) \ ((MAGICKWAND_MAJOR_VERSION > (major)) || \ ((MAGICKWAND_MAJOR_VERSION == (major)) && \ (MAGICKWAND_MINOR_VERSION > (minor))) || \ ((MAGICKWAND_MAJOR_VERSION == (major)) && \ (MAGICKWAND_MINOR_VERSION == (minor)) && \ (MAGICKWAND_MICRO_VERSION >= (micro)))) #include #include #include #include #include #include #include #if defined(WIN32) || defined(WIN64) || defined(_WIN32_WINNT) # define MAGICKWAND_WINDOWS_SUPPORT #else # define MAGICKWAND_POSIX_SUPPORT #endif typedef struct _MagickWand MagickWand; #include "wand/method-attribute.h" #include "magick/MagickCore.h" #include "wand/animate.h" #include "wand/compare.h" #include "wand/composite.h" #include "wand/conjure.h" #include "wand/convert.h" #include "wand/deprecate.h" #include "wand/display.h" #include "wand/drawing-wand.h" #include "wand/identify.h" #include "wand/import.h" #include "wand/magick-property.h" #include "wand/magick-image.h" #include "wand/mogrify.h" #include "wand/montage.h" #include "wand/pixel-iterator.h" #include "wand/pixel-wand.h" #include "wand/stream.h" #include "wand/wand-view.h" extern WandExport char *MagickGetException(const MagickWand *,ExceptionType *); extern WandExport ExceptionType MagickGetExceptionType(const MagickWand *); extern WandExport MagickBooleanType IsMagickWand(const MagickWand *), IsMagickWandInstantiated(void), MagickClearException(MagickWand *), MagickSetIteratorIndex(MagickWand *,const ssize_t); extern WandExport MagickWand *CloneMagickWand(const MagickWand *), *DestroyMagickWand(MagickWand *), *NewMagickWand(void), *NewMagickWandFromImage(const Image *); extern WandExport ssize_t MagickGetIteratorIndex(MagickWand *); extern WandExport void ClearMagickWand(MagickWand *), MagickWandGenesis(void), MagickWandTerminus(void), *MagickRelinquishMemory(void *), MagickResetIterator(MagickWand *), MagickSetFirstIterator(MagickWand *), MagickSetLastIterator(MagickWand *); #if defined(__cplusplus) || defined(c_plusplus) } #endif #endif