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

« back to all changes in this revision

Viewing changes to magick/magic.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
    *previous,
47
47
    *next;  /* deprecated, use GetMagicInfoList() */
48
48
 
49
 
  unsigned long
 
49
  size_t
50
50
    signature;
51
51
} MagicInfo;
52
52
 
53
53
extern MagickExport char
54
 
  **GetMagicList(const char *,unsigned long *,ExceptionInfo *);
 
54
  **GetMagicList(const char *,size_t *,ExceptionInfo *);
55
55
 
56
56
extern MagickExport const char
57
57
  *GetMagicName(const MagicInfo *);
62
62
 
63
63
extern MagickExport const MagicInfo
64
64
  *GetMagicInfo(const unsigned char *,const size_t,ExceptionInfo *),
65
 
  **GetMagicInfoList(const char *,unsigned long *,ExceptionInfo *);
 
65
  **GetMagicInfoList(const char *,size_t *,ExceptionInfo *);
66
66
 
67
67
extern MagickExport void
68
68
  MagicComponentTerminus(void);