~ubuntu-branches/ubuntu/natty/libexif/natty-security

« back to all changes in this revision

Viewing changes to libexif/exif-ifd.h

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Bouthenot
  • Date: 2009-04-19 17:53:15 UTC
  • mfrom: (6.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090419175315-5aiwj7jbm26srabc
Tags: 0.6.17-1
* Adopt the package within pkg-phototools:
  - Set the Maintainer to the group
  - Add Frederic Peters and myself as Uploaders.
  - Add Vcs-Browser and Vcs-Git fields accordingly.
* New upstream release:
  - remove patches merged upsteam:
    + 30_olympus_makernote.dpatch
    + 40_crash_looking_up_invalid_values.dpatch
    + 50_relibtoolize.dpatch
    + CVE-2007-6351.dpatch
    + CVE-2007-6352.dpatch
  - convert existing patches from dpatch to quilt.
  - Fix a bug while reading exif datas in some cases (Closes: #447907)
* Switch packaging to debhelper 7
* Update debian/control:
  - Drop duplicate section field for exif12
  - Bump Standards-Version to 3.8.1
  - Replace deprecated ${Source-Version} by ${binary:Version}
  - Enhance libexif-dev long description.
  - Add homepage field.
  - Add DM-Upload-Allowed field.
* Force remove of files not fully cleaned
* Remove empty doc files in libexif-dev.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* exif-ifd.h
2
2
 *
3
 
 * Copyright � 2002 Lutz M�ller <lutz@users.sourceforge.net>
 
3
 * Copyright (c) 2002 Lutz Mueller <lutz@users.sourceforge.net>
4
4
 *
5
5
 * This library is free software; you can redistribute it and/or
6
6
 * modify it under the terms of the GNU Lesser General Public
22
22
#define __EXIF_IFD_H__
23
23
 
24
24
typedef enum {
25
 
        EXIF_IFD_0 = 0,
26
 
        EXIF_IFD_1,
27
 
        EXIF_IFD_EXIF,
28
 
        EXIF_IFD_GPS,
29
 
        EXIF_IFD_INTEROPERABILITY,
30
 
        EXIF_IFD_COUNT
 
25
        EXIF_IFD_0 = 0,                /*!< */
 
26
        EXIF_IFD_1,                    /*!< */
 
27
        EXIF_IFD_EXIF,                 /*!< */
 
28
        EXIF_IFD_GPS,                  /*!< */
 
29
        EXIF_IFD_INTEROPERABILITY,     /*!< */
 
30
        EXIF_IFD_COUNT                 /*!< Not a real value, just (max_value + 1). */
31
31
} ExifIfd;
32
32
 
33
33
const char *exif_ifd_get_name (ExifIfd ifd);