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

« back to all changes in this revision

Viewing changes to wand/pixel-wand.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2011-06-15 11:05:28 UTC
  • mfrom: (6.2.11 sid)
  • Revision ID: james.westby@ubuntu.com-20110615110528-08jgo07a4846xh8d
Tags: 8:6.6.0.4-3ubuntu1
* Resynchronise with Debian (LP: #797595).  Remaining changes:
  - Make ufraw-batch (universe) a suggestion instead of a recommendation.
  - Make debian/rules install target depend on check; they cannot reliably
    be run in parallel.
  - Don't set MAKEFLAGS in debian/rules; just pass it to the build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
extern WandExport PixelWand
58
58
  *ClonePixelWand(const PixelWand *),
59
 
  **ClonePixelWands(const PixelWand **,const size_t),
 
59
  **ClonePixelWands(const PixelWand **,const unsigned long),
60
60
  *DestroyPixelWand(PixelWand *),
61
 
  **DestroyPixelWands(PixelWand **,const size_t),
 
61
  **DestroyPixelWands(PixelWand **,const unsigned long),
62
62
  *NewPixelWand(void),
63
 
  **NewPixelWands(const size_t);
 
63
  **NewPixelWands(const unsigned long);
64
64
 
65
65
extern WandExport Quantum
66
66
  PixelGetAlphaQuantum(const PixelWand *),
73
73
  PixelGetRedQuantum(const PixelWand *),
74
74
  PixelGetYellowQuantum(const PixelWand *);
75
75
 
76
 
extern WandExport size_t
 
76
extern WandExport unsigned long
77
77
  PixelGetColorCount(const PixelWand *);
78
78
 
79
79
extern WandExport void
87
87
  PixelSetBlue(PixelWand *,const double),
88
88
  PixelSetBlueQuantum(PixelWand *,const Quantum),
89
89
  PixelSetColorFromWand(PixelWand *,const PixelWand *),
90
 
  PixelSetColorCount(PixelWand *,const size_t),
 
90
  PixelSetColorCount(PixelWand *,const unsigned long),
91
91
  PixelSetCyan(PixelWand *,const double),
92
92
  PixelSetCyanQuantum(PixelWand *,const Quantum),
93
93
  PixelSetFuzz(PixelWand *,const double),