File indexing completed on 2025-01-30 10:11:44
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_REGISTRY_H
0019 #define MAGICKCORE_REGISTRY_H
0020
0021 #if defined(__cplusplus) || defined(c_plusplus)
0022 extern "C" {
0023 #endif
0024
0025 typedef enum
0026 {
0027 UndefinedRegistryType,
0028 ImageRegistryType,
0029 ImageInfoRegistryType,
0030 StringRegistryType
0031 } RegistryType;
0032
0033 extern MagickExport char
0034 *GetNextImageRegistry(void);
0035
0036 extern MagickExport MagickBooleanType
0037 DefineImageRegistry(const RegistryType,const char *,ExceptionInfo *),
0038 DeleteImageRegistry(const char *),
0039 SetImageRegistry(const RegistryType,const char *,const void *,
0040 ExceptionInfo *);
0041
0042 extern MagickExport void
0043 *GetImageRegistry(const RegistryType,const char *,ExceptionInfo *),
0044 *RemoveImageRegistry(const char *),
0045 ResetImageRegistryIterator(void);
0046
0047 #if defined(__cplusplus) || defined(c_plusplus)
0048 }
0049 #endif
0050
0051 #endif