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

« back to all changes in this revision

Viewing changes to magick/type.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.
48
48
 
49
49
typedef struct _TypeInfo
50
50
{
51
 
  unsigned long
 
51
  size_t
52
52
    face;
53
53
 
54
54
  char
63
63
  StretchType
64
64
    stretch;
65
65
 
66
 
  unsigned long
 
66
  size_t
67
67
    weight;
68
68
 
69
69
  char
80
80
    *previous,
81
81
    *next;  /* deprecated, use GetTypeInfoList() */
82
82
 
83
 
  unsigned long
 
83
  size_t
84
84
    signature;
85
85
} TypeInfo;
86
86
 
87
87
extern MagickExport char
88
 
  **GetTypeList(const char *,unsigned long *,ExceptionInfo *);
 
88
  **GetTypeList(const char *,size_t *,ExceptionInfo *);
89
89
 
90
90
extern MagickExport MagickBooleanType
91
91
  ListTypeInfo(FILE *,ExceptionInfo *),
94
94
extern MagickExport const TypeInfo
95
95
  *GetTypeInfo(const char *,ExceptionInfo *),
96
96
  *GetTypeInfoByFamily(const char *,const StyleType,const StretchType,
97
 
    const unsigned long,ExceptionInfo *),
98
 
  **GetTypeInfoList(const char *,unsigned long *,ExceptionInfo *);
 
97
    const size_t,ExceptionInfo *),
 
98
  **GetTypeInfoList(const char *,size_t *,ExceptionInfo *);
99
99
 
100
100
MagickExport void
101
101
  TypeComponentTerminus(void);