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

« back to all changes in this revision

Viewing changes to wand/MagickWand.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.
46
46
#include <stdlib.h>
47
47
#include <sys/types.h>
48
48
 
49
 
#if defined(__CYGWIN32__)
50
 
#  if !defined(__CYGWIN__)
51
 
#    define __CYGWIN__ __CYGWIN32__
52
 
#  endif
53
 
#endif
54
 
#if defined(_WIN32) || defined(WIN32)
55
 
#  if !defined(__WINDOWS__)
56
 
#    if defined(_WIN32)
57
 
#      define __WINDOWS__ _WIN32
58
 
#    else
59
 
#      if defined(WIN32)
60
 
#        define __WINDOWS__ WIN32
61
 
#      endif
62
 
#    endif
63
 
#  endif
64
 
#endif
65
 
 
66
 
#if defined(_WIN64) || defined(WIN64)
67
 
#  if !defined(__WINDOWS__)
68
 
#    if defined(_WIN64)
69
 
#      define __WINDOWS__ _WIN64
70
 
#    else
71
 
#      if defined(WIN64)
72
 
#        define __WINDOWS__ WIN64
73
 
#      endif
74
 
#    endif
75
 
#  endif
76
 
#endif
77
 
 
78
 
#if defined(__WINDOWS__)
 
49
#if defined(WIN32) || defined(WIN64)
 
50
#  define MAGICKCORE_WINDOWS_SUPPORT
 
51
#else
 
52
#  define MAGICKCORE_POSIX_SUPPORT
 
53
#endif 
 
54
 
 
55
#if defined(MAGICKCORE_WINDOWS_SUPPORT) && !defined(__CYGWIN__) && !defined(__MINGW32__)
79
56
# if defined(_MT) && defined(_DLL) && !defined(_MAGICKDLL_) && !defined(_LIB)
80
57
#  define _MAGICKDLL_
81
58
# endif
170
147
extern WandExport ExceptionType
171
148
  MagickGetExceptionType(const MagickWand *);
172
149
 
173
 
extern WandExport long
174
 
  MagickGetIteratorIndex(MagickWand *);
175
 
 
176
150
extern WandExport MagickBooleanType
177
151
  IsMagickWand(const MagickWand *),
178
152
  MagickClearException(MagickWand *),
179
 
  MagickSetIteratorIndex(MagickWand *,const long);
 
153
  MagickSetIteratorIndex(MagickWand *,const ssize_t);
180
154
 
181
155
extern WandExport MagickWand
182
156
  *CloneMagickWand(const MagickWand *),
184
158
  *NewMagickWand(void),
185
159
  *NewMagickWandFromImage(const Image *);
186
160
 
 
161
extern WandExport ssize_t
 
162
  MagickGetIteratorIndex(MagickWand *);
 
163
 
187
164
extern WandExport void
188
165
  ClearMagickWand(MagickWand *),
189
166
  MagickWandGenesis(void),