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

« back to all changes in this revision

Viewing changes to libgimpbase/gimpbase-private.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:
24
24
#define __GIMP_BASE_PRIVATE_H__
25
25
 
26
26
 
27
 
typedef struct _GimpUnitVTable GimpUnitVTable;
 
27
typedef struct _GimpUnitVtable GimpUnitVtable;
28
28
 
29
 
struct _GimpUnitVTable
 
29
struct _GimpUnitVtable
30
30
{
31
31
  gint          (* unit_get_number_of_units)          (void);
32
32
  gint          (* unit_get_number_of_built_in_units) (void);
57
57
};
58
58
 
59
59
 
60
 
extern GimpUnitVTable _gimp_unit_vtable;
 
60
extern GimpUnitVtable _gimp_unit_vtable;
61
61
 
62
62
 
63
63
G_BEGIN_DECLS
64
64
 
65
 
void  gimp_base_init (GimpUnitVTable *vtable);
 
65
void  gimp_base_init (GimpUnitVtable *vtable);
66
66
 
67
67
G_END_DECLS
68
68