]> granicus.if.org Git - imagemagick/blob - magick/module.h
(no commit message)
[imagemagick] / magick / module.h
1 /*
2   Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization
3   dedicated to making software imaging solutions freely available.
4   
5   You may not use this file except in compliance with the License.
6   obtain a copy of the License at
7   
8     http://www.imagemagick.org/script/license.php
9   
10   Unless required by applicable law or agreed to in writing, software
11   distributed under the License is distributed on an "AS IS" BASIS,
12   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   See the License for the specific language governing permissions and
14   limitations under the License.
15
16   MagickCore module methods.
17 */
18 #ifndef _MAGICKCORE_MODULE_H
19 #define _MAGICKCORE_MODULE_H
20
21 #if defined(__cplusplus) || defined(c_plusplus)
22 extern "C" {
23 #endif
24
25 #include <time.h>
26 #include "magick/version.h"
27
28 #define MagickImageCoderSignature  ((size_t) \
29   (((MagickLibVersion) << 8) | MAGICKCORE_QUANTUM_DEPTH))
30 #define MagickImageFilterSignature  ((size_t) \
31   (((MagickLibVersion) << 8) | MAGICKCORE_QUANTUM_DEPTH))
32
33 typedef enum
34 {
35   MagickImageCoderModule,
36   MagickImageFilterModule
37 } MagickModuleType;
38
39 typedef struct _ModuleInfo
40 {
41   char
42     *path,
43     *tag;
44
45   void
46     *handle,
47     (*unregister_module)(void);
48
49   size_t
50     (*register_module)(void);
51
52   time_t
53     timestamp;
54
55   MagickBooleanType
56     stealth;
57
58   struct _ModuleInfo
59     *previous,
60     *next;  /* deprecated, use GetModuleInfoList() */
61
62   size_t
63     signature;
64 } ModuleInfo;
65
66 typedef ModuleExport size_t
67   ImageFilterHandler(Image **,const int,const char **,ExceptionInfo *);
68
69 extern MagickExport char
70   **GetModuleList(const char *,const MagickModuleType,size_t *,ExceptionInfo *);
71
72 extern MagickExport const ModuleInfo
73   **GetModuleInfoList(const char *,size_t *,ExceptionInfo *);
74
75 extern MagickExport MagickBooleanType
76   InitializeModuleList(ExceptionInfo *),
77   InvokeDynamicImageFilter(const char *,Image **,const int,const char **,
78     ExceptionInfo *),
79   ListModuleInfo(FILE *,ExceptionInfo *),
80   ModuleComponentGenesis(void),
81   OpenModule(const char *,ExceptionInfo *),
82   OpenModules(ExceptionInfo *);
83
84 extern MagickExport ModuleInfo
85   *GetModuleInfo(const char *,ExceptionInfo *);
86
87 extern MagickExport void
88   DestroyModuleList(void),
89   ModuleComponentTerminus(void),
90   RegisterStaticModules(void),
91   UnregisterStaticModules(void);
92
93 #if defined(__cplusplus) || defined(c_plusplus)
94 }
95 #endif
96
97 #endif