~ubuntu-branches/ubuntu/oneiric/imagemagick/oneiric-updates

« back to all changes in this revision

Viewing changes to magick/module.h

  • Committer: Bazaar Package Importer
  • Author(s): Nelson A. de Oliveira
  • Date: 2010-06-20 19:59:55 UTC
  • mfrom: (6.2.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100620195955-n3eq0yenhycw888i
Tags: 7:6.6.2.6-1
* New upstream release;
* Change Recommends on ufraw to ufraw-batch (Closes: #579775);
* Fix FTBFS when using dash to run the configure script, by setting
  CONFIG_SHELL=/bin/bash (Closes: #582073, #583024). Thank you, Niko Tyni!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
  Copyright 1999-2009 ImageMagick Studio LLC, a non-profit organization
 
2
  Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization
3
3
  dedicated to making software imaging solutions freely available.
4
4
  
5
5
  You may not use this file except in compliance with the License.
25
25
#include <time.h>
26
26
#include "magick/version.h"
27
27
 
28
 
#define MagickImageCoderSignature  ((unsigned long) \
 
28
#define MagickImageCoderSignature  ((size_t) \
29
29
  (((MagickLibVersion) << 8) | MAGICKCORE_QUANTUM_DEPTH))
30
 
#define MagickImageFilterSignature  ((unsigned long) \
 
30
#define MagickImageFilterSignature  ((size_t) \
31
31
  (((MagickLibVersion) << 8) | MAGICKCORE_QUANTUM_DEPTH))
32
32
 
33
33
typedef enum
46
46
    *handle,
47
47
    (*unregister_module)(void);
48
48
 
49
 
  unsigned long
 
49
  size_t
50
50
    (*register_module)(void);
51
51
 
52
52
  time_t
59
59
    *previous,
60
60
    *next;  /* deprecated, use GetModuleInfoList() */
61
61
 
62
 
  unsigned long
 
62
  size_t
63
63
    signature;
64
64
} ModuleInfo;
65
65
 
66
 
typedef ModuleExport unsigned long
 
66
typedef ModuleExport size_t
67
67
  ImageFilterHandler(Image **,const int,const char **,ExceptionInfo *);
68
68
 
69
69
extern MagickExport char
70
 
  **GetModuleList(const char *,unsigned long *,ExceptionInfo *);
 
70
  **GetModuleList(const char *,size_t *,ExceptionInfo *);
71
71
 
72
72
extern MagickExport const ModuleInfo
73
 
  **GetModuleInfoList(const char *,unsigned long *,ExceptionInfo *);
 
73
  **GetModuleInfoList(const char *,size_t *,ExceptionInfo *);
74
74
 
75
75
extern MagickExport MagickBooleanType
76
76
  InitializeModuleList(ExceptionInfo *),