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

« back to all changes in this revision

Viewing changes to libgimp/gimpproceduraldb.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:
28
28
 
29
29
 
30
30
gboolean gimp_procedural_db_proc_info    (const gchar      *procedure,
31
 
                                          gchar           **blurb,
32
 
                                          gchar           **help,
33
 
                                          gchar           **author,
34
 
                                          gchar           **copyright,
35
 
                                          gchar           **date,
36
 
                                          GimpPDBProcType  *proc_type,
37
 
                                          gint             *num_args,
38
 
                                          gint             *num_values,
39
 
                                          GimpParamDef    **args,
40
 
                                          GimpParamDef    **return_vals);
 
31
                                          gchar           **blurb,
 
32
                                          gchar           **help,
 
33
                                          gchar           **author,
 
34
                                          gchar           **copyright,
 
35
                                          gchar           **date,
 
36
                                          GimpPDBProcType  *proc_type,
 
37
                                          gint             *num_args,
 
38
                                          gint             *num_values,
 
39
                                          GimpParamDef    **args,
 
40
                                          GimpParamDef    **return_vals);
41
41
gboolean gimp_procedural_db_get_data     (const gchar      *identifier,
42
 
                                          gpointer          data);
 
42
                                          gpointer          data);
43
43
gboolean gimp_procedural_db_set_data     (const gchar      *identifier,
44
 
                                          gpointer          data,
45
 
                                          guint32           bytes);
 
44
                                          gconstpointer     data,
 
45
                                          guint32           bytes);
46
46
 
47
47
 
48
48
G_END_DECLS