~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/metadata/metadata.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* metadata.h - defines for the metadata editor
 
2
 *
 
3
 * Copyright (C) 2004-2005, Raphaël Quinet <raphael@gimp.org>
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this library; if not, write to the
 
17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
18
 * Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
#ifndef __METADATA_H__
 
22
#define __METADATA_H__
 
23
 
 
24
 
 
25
#define EDITOR_PROC         "plug-in-metadata-editor"
 
26
#define DECODE_XMP_PROC     "plug-in-metadata-decode-xmp"
 
27
#define ENCODE_XMP_PROC     "plug-in-metadata-encode-xmp"
 
28
#define DECODE_EXIF_PROC    "plug-in-metadata-decode-exif"
 
29
#define ENCODE_EXIF_PROC    "plug-in-metadata-encode-exif"
 
30
#define GET_PROC            "plug-in-metadata-get"
 
31
#define SET_PROC            "plug-in-metadata-set"
 
32
#define GET_SIMPLE_PROC     "plug-in-metadata-get-simple"
 
33
#define SET_SIMPLE_PROC     "plug-in-metadata-set-simple"
 
34
#define IMPORT_PROC         "plug-in-metadata-import"
 
35
#define EXPORT_PROC         "plug-in-metadata-export"
 
36
#define PLUG_IN_BINARY      "metadata"
 
37
 
 
38
 
 
39
#endif /* __METADATA_H__ */