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

« back to all changes in this revision

Viewing changes to libgimpbase/gimpparasite.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:
2
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
3
3
 *
4
4
 * gimpparasite.h
5
 
 * Copyright (C) 1998 Jay Cox <jaycox@earthlink.net>
 
5
 * Copyright (C) 1998 Jay Cox <jaycox@gimp.org>
6
6
 *
7
7
 * This library is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
28
28
/* For information look into the C source or the html documentation */
29
29
 
30
30
 
 
31
/*
 
32
 * GIMP_TYPE_PARASITE
 
33
 */
 
34
 
 
35
#define GIMP_TYPE_PARASITE               (gimp_parasite_get_type ())
 
36
#define GIMP_VALUE_HOLDS_PARASITE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_PARASITE))
 
37
 
 
38
GType   gimp_parasite_get_type           (void) G_GNUC_CONST;
 
39
 
 
40
 
 
41
/*
 
42
 * GIMP_TYPE_PARAM_PARASITE
 
43
 */
 
44
 
 
45
#define GIMP_TYPE_PARAM_PARASITE           (gimp_param_parasite_get_type ())
 
46
#define GIMP_IS_PARAM_SPEC_PARASITE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), GIMP_TYPE_PARAM_PARASITE))
 
47
 
 
48
GType        gimp_param_parasite_get_type  (void) G_GNUC_CONST;
 
49
 
 
50
GParamSpec * gimp_param_spec_parasite      (const gchar  *name,
 
51
                                            const gchar  *nick,
 
52
                                            const gchar  *blurb,
 
53
                                            GParamFlags   flags);
 
54
 
 
55
 
31
56
#define GIMP_PARASITE_PERSISTENT 1
32
57
#define GIMP_PARASITE_UNDOABLE   2
33
58
 
46
71
  guint32   flags;  /* save Parasite in XCF file, etc.                */
47
72
  guint32   size;   /* amount of data                                 */
48
73
  gpointer  data;   /* a pointer to the data.  plugin is              *
49
 
                     * responsible for tracking byte order            */
 
74
                     * responsible for tracking byte order            */
50
75
};
51
76
 
52
77