MagickWand 7.1.0
Convert, Edit, Or Compose Bitmap Images
magick-wand-private.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _MagickWand
 

Macros

#define MagickWandId   "MagickWand"
 
#define QuantumTick(i, span)
 
#define ThrowWandException(severity, tag, context)
 
#define ThrowWandFatalException(severity, tag, context)
 

Functions

static void CheckMagickCoreCompatibility ()
 

Macro Definition Documentation

◆ MagickWandId

#define MagickWandId   "MagickWand"

Definition at line 25 of file magick-wand-private.h.

◆ QuantumTick

#define QuantumTick (   i,
  span 
)
Value:
((MagickBooleanType) ((((i) & ((i)-1)) == 0) || \
(((i) & 0xfff) == 0) || \
((MagickOffsetType) (i) == ((MagickOffsetType) (span)-1))))

Definition at line 26 of file magick-wand-private.h.

◆ ThrowWandException

#define ThrowWandException (   severity,
  tag,
  context 
)
Value:
{ \
(void) ThrowMagickException(wand->exception,GetMagickModule(),severity, \
tag,"`%s'",context); \
return(MagickFalse); \
}

Definition at line 29 of file magick-wand-private.h.

◆ ThrowWandFatalException

#define ThrowWandFatalException (   severity,
  tag,
  context 
)
Value:
{ \
ExceptionInfo \
*fatal_exception; \
\
fatal_exception=AcquireExceptionInfo(); \
(void) ThrowMagickException(fatal_exception,GetMagickModule(),severity,tag, \
"`%s'",context); \
CatchException(fatal_exception); \
(void) DestroyExceptionInfo(fatal_exception); \
MagickWandTerminus(); \
_exit((int) (severity-FatalErrorException)+1); \
}

Definition at line 35 of file magick-wand-private.h.

Function Documentation

◆ CheckMagickCoreCompatibility()

static void CheckMagickCoreCompatibility ( )
inlinestatic