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

« back to all changes in this revision

Viewing changes to magick/utility.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:
37
37
 
38
38
extern MagickExport char
39
39
  *Base64Encode(const unsigned char *,const size_t,size_t *),
40
 
  **GetPathComponents(const char *,size_t *),
41
 
  **ListFiles(const char *,const char *,size_t *);
 
40
  **GetPathComponents(const char *,unsigned long *),
 
41
  **ListFiles(const char *,const char *,unsigned long *);
42
42
 
43
43
extern MagickExport FILE
44
44
  *OpenMagickStream(const char *,const char *);
47
47
  SystemCommand(const MagickBooleanType,const MagickBooleanType,const char *,
48
48
    ExceptionInfo *);
49
49
 
 
50
extern MagickExport long
 
51
  GetMagickPageSize(void);
 
52
 
50
53
extern MagickExport MagickBooleanType
51
54
  AcquireUniqueFilename(char *),
52
55
  AcquireUniqueSymbolicLink(const char *,char *),
56
59
  IsMagickTrue(const char *),
57
60
  IsPathAccessible(const char *);
58
61
 
59
 
extern MagickExport size_t
60
 
  MultilineCensus(const char *);
61
 
 
62
 
extern MagickExport ssize_t
63
 
  GetMagickPageSize(void);
64
 
 
65
62
extern MagickExport unsigned char
66
63
  *Base64Decode(const char *, size_t *);
67
64
 
 
65
extern MagickExport unsigned long
 
66
  MultilineCensus(const char *);
 
67
 
68
68
extern MagickExport void
69
69
  AppendImageFormat(const char *,char *),
70
 
  ChopPathComponents(char *,const size_t),
 
70
  ChopPathComponents(char *,const unsigned long),
71
71
  ExpandFilename(char *),
72
72
  GetPathComponent(const char *,PathType,char *);
73
73