Powered by Pair ImageMagick logo
Image Magick
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | File List | Namespace Members | Data Fields | Globals | Related Pages

ImageMagick-6.1.1/coders/msl.c File Reference

#include "magick/studio.h"
#include "magick/attribute.h"
#include "magick/blob.h"
#include "magick/blob_private.h"
#include "magick/color.h"
#include "magick/color_private.h"
#include "magick/composite.h"
#include "magick/constitute.h"
#include "magick/decorate.h"
#include "magick/draw.h"
#include "magick/effect.h"
#include "magick/enhance.h"
#include "magick/error.h"
#include "magick/error_private.h"
#include "magick/fx.h"
#include "magick/geometry.h"
#include "magick/image.h"
#include "magick/image_private.h"
#include "magick/list.h"
#include "magick/log.h"
#include "magick/magick.h"
#include "magick/memory_.h"
#include "magick/option.h"
#include "magick/paint.h"
#include "magick/resize.h"
#include "magick/shear.h"
#include "magick/static.h"
#include "magick/string_.h"
#include "magick/transform.h"
#include "magick/utility.h"

Include dependency graph for msl.c:

Include dependency graph

Go to the source code of this file.

Data Structures

struct  _MSLGroupInfo
struct  _MSLInfo

Defines

#define ThrowMSLException(severity, tag, reason)

Typedefs

typedef _MSLGroupInfo MSLGroupInfo
typedef _MSLInfo MSLInfo

Functions

ModuleExport void RegisterMSLImage (void)
ModuleExport void UnregisterMSLImage (void)


Define Documentation

#define ThrowMSLException severity,
tag,
reason   ) 
 

Value:

(void) ThrowMagickException(msl_info->exception,GetMagickModule(),severity, \ tag,reason);

Definition at line 90 of file msl.c.


Typedef Documentation

typedef struct _MSLGroupInfo MSLGroupInfo
 

typedef struct _MSLInfo MSLInfo
 


Function Documentation

ModuleExport void RegisterMSLImage void   ) 
 

Definition at line 4369 of file msl.c.

References AcquireString(), _MagickInfo::decoder, DecoderHandler, _MagickInfo::description, _MagickInfo::encoder, EncoderHandler, _MagickInfo::module, ModuleExport, RegisterMagickInfo(), and SetMagickInfo().

Referenced by RegisterStaticModules().

04370 { 04371 MagickInfo 04372 *entry; 04373 04374 entry=SetMagickInfo("MSL"); 04375 #if defined(HasXML) 04376 entry->decoder=(DecoderHandler *) ReadMSLImage; 04377 entry->encoder=(EncoderHandler *) WriteMSLImage; 04378 #endif 04379 entry->description=AcquireString("Magick Scripting Language"); 04380 entry->module=AcquireString("MSL"); 04381 (void) RegisterMagickInfo(entry); 04382 }

Here is the call graph for this function:

ModuleExport void UnregisterMSLImage void   ) 
 

Definition at line 4403 of file msl.c.

References ModuleExport, and UnregisterMagickInfo().

Referenced by UnregisterStaticModules().

04404 { 04405 (void) UnregisterMagickInfo("MSL"); 04406 }

Here is the call graph for this function:


Generated on Mon Oct 25 13:42:35 2004 for ImageMagick by doxygen 1.3.7
ImageMagick Copyright © 2004, ImageMagick Studio LLC