diff options
Diffstat (limited to 'src/eom-exif-util.h')
-rw-r--r-- | src/eom-exif-util.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/eom-exif-util.h b/src/eom-exif-util.h index 451924b..5a34be9 100644 --- a/src/eom-exif-util.h +++ b/src/eom-exif-util.h @@ -28,13 +28,21 @@ #define __EOM_EXIF_UTIL_H__ #include <glib.h> +#include <glib-object.h> #include <libexif/exif-data.h> G_BEGIN_DECLS +typedef ExifData EomExifData; + gchar* eom_exif_util_format_date (const gchar *date); -const gchar *eom_exif_util_get_value (ExifData *exif_data, gint tag_id, gchar *buffer, guint buf_size); +const gchar *eom_exif_data_get_value (EomExifData *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); G_END_DECLS |