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

« back to all changes in this revision

Viewing changes to libgimpthumb/gimpthumb-utils.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:
33
33
                                                       const gchar    *thumb_basedir);
34
34
 
35
35
gchar             * gimp_thumb_find_thumb             (const gchar    *uri,
36
 
                                                       GimpThumbSize  *size);
 
36
                                                       GimpThumbSize  *size) G_GNUC_MALLOC;
37
37
 
38
38
GimpThumbFileType   gimp_thumb_file_test              (const gchar    *filename,
39
39
                                                       gint64         *mtime,
41
41
                                                       gint           *err_no);
42
42
 
43
43
gchar             * gimp_thumb_name_from_uri          (const gchar    *uri,
44
 
                                                       GimpThumbSize   size);
 
44
                                                       GimpThumbSize   size) G_GNUC_MALLOC;
45
45
const gchar       * gimp_thumb_get_thumb_dir          (GimpThumbSize   size);
46
46
gboolean            gimp_thumb_ensure_thumb_dir       (GimpThumbSize   size,
47
47
                                                       GError        **error);
48
48
void                gimp_thumbs_delete_for_uri        (const gchar    *uri);
49
49
 
50
50
gchar             * gimp_thumb_name_from_uri_local    (const gchar    *uri,
51
 
                                                       GimpThumbSize   size);
 
51
                                                       GimpThumbSize   size) G_GNUC_MALLOC;
52
52
gchar             * gimp_thumb_get_thumb_dir_local    (const gchar    *dirname,
53
 
                                                       GimpThumbSize   size);
 
53
                                                       GimpThumbSize   size) G_GNUC_MALLOC;
54
54
gboolean            gimp_thumb_ensure_thumb_dir_local (const gchar    *dirname,
55
55
                                                       GimpThumbSize   size,
56
56
                                                       GError        **error);
58
58
 
59
59
 
60
60
/*  for internal use only   */
61
 
void                _gimp_thumbs_delete_others        (const gchar    *uri,
 
61
G_GNUC_INTERNAL void    _gimp_thumbs_delete_others    (const gchar    *uri,
62
62
                                                       GimpThumbSize   size);
63
 
gchar *             _gimp_thumb_filename_from_uri     (const gchar    *uri);
 
63
G_GNUC_INTERNAL gchar * _gimp_thumb_filename_from_uri (const gchar    *uri);
64
64
 
65
65
 
66
66
G_END_DECLS