Go to the source code of this file.
◆ MagickWandId
#define MagickWandId "MagickWand" |
◆ QuantumTick
#define QuantumTick |
( |
|
i, |
|
|
|
span |
|
) |
| |
Value:((MagickBooleanType) ((((i) & ((i)-1)) == 0) || \
(((i) & 0xfff) == 0) || \
((MagickOffsetType) (i) == ((MagickOffsetType) (span)-1))))
◆ ThrowWandException
#define ThrowWandException |
( |
|
severity, |
|
|
|
tag, |
|
|
|
context |
|
) |
| |
Value:{ \
(void) ThrowMagickException(
wand->
exception,GetMagickModule(),severity, \
tag,"`%s'",context); \
return(MagickFalse); \
}
struct _MagickWand wand
Definition: wandcli-private.h:103
ExceptionInfo * exception
Definition: magick-wand-private.h:64
◆ 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); \
}