diff options
author | infirit <[email protected]> | 2014-07-28 00:35:31 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-28 00:35:31 +0200 |
commit | 9c45c410b57ac59bb1976f41cca6d08cb081db98 (patch) | |
tree | 9c8d67d43e4a30e41ede47d964774af7bae1ac48 /src/eom-exif-util.h | |
parent | f1515b509037bb1dc641ae7784ff13ba61a8d50e (diff) | |
download | eom-9c45c410b57ac59bb1976f41cca6d08cb081db98.tar.bz2 eom-9c45c410b57ac59bb1976f41cca6d08cb081db98.tar.xz |
Dont use EomExifData in the C api
Eog bug https://bugzilla.gnome.org/show_bug.cgi?id=626257
Based on eog commit f457e6cd2f9b25194145681109ae4bd7f3b4ee7f
From Claudio Saavedra <[email protected]>
Diffstat (limited to 'src/eom-exif-util.h')
-rw-r--r-- | src/eom-exif-util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/eom-exif-util.h b/src/eom-exif-util.h index 5a34be9..f1bbf62 100644 --- a/src/eom-exif-util.h +++ b/src/eom-exif-util.h @@ -33,16 +33,16 @@ G_BEGIN_DECLS -typedef ExifData EomExifData; +#define EOM_TYPE_EXIF_DATA eom_exif_data_get_type() gchar* eom_exif_util_format_date (const gchar *date); -const gchar *eom_exif_data_get_value (EomExifData *exif_data, gint tag_id, gchar *buffer, guint buf_size); +const gchar *eom_exif_data_get_value (ExifData *exif_data, gint tag_id, gchar *buffer, guint buf_size); GType eom_exif_data_get_type (void) G_GNUC_CONST; -EomExifData * eom_exif_data_copy (EomExifData *data); -void eom_exif_data_free (EomExifData *data); +ExifData * eom_exif_data_copy (ExifData *data); +void eom_exif_data_free (ExifData *data); G_END_DECLS |