File indexing completed on 2025-01-30 10:11:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef MAGICKCORE_MAGIC_H
0019 #define MAGICKCORE_MAGIC_H
0020
0021 #if defined(__cplusplus) || defined(c_plusplus)
0022 extern "C" {
0023 #endif
0024
0025 typedef struct _MagicInfo
0026 MagicInfo;
0027
0028 extern MagickExport char
0029 **GetMagicList(const char *,size_t *,ExceptionInfo *);
0030
0031 extern MagickExport const char
0032 *GetMagicName(const MagicInfo *);
0033
0034 extern MagickExport MagickBooleanType
0035 ListMagicInfo(FILE *,ExceptionInfo *);
0036
0037 extern MagickExport const MagicInfo
0038 *GetMagicInfo(const unsigned char *,const size_t,ExceptionInfo *),
0039 **GetMagicInfoList(const char *,size_t *,ExceptionInfo *);
0040
0041 extern MagickExport size_t
0042 GetMagicPatternExtent(ExceptionInfo *);
0043
0044 #if defined(__cplusplus) || defined(c_plusplus)
0045 }
0046 #endif
0047
0048 #endif