diff options
author | Cosimo Cecchi <cosimo.cecchi@collabora.co.uk> | 2009-02-09 23:14:08 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:46:04 +0800 |
commit | b16406a06699233fd68cc1cf3a3610eed4d63d6c (patch) | |
tree | 0549a3867b3fad7487aa8ccc522e8c86ec430738 /libempathy/empathy-utils.h | |
parent | 32ea1c4f65f1b38226c6a4216e9271dfbaa12879 (diff) | |
download | gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar.gz gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar.bz2 gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar.lz gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar.xz gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.tar.zst gsoc2013-empathy-b16406a06699233fd68cc1cf3a3610eed4d63d6c.zip |
Add some error handling and keep on adding progress signals.
Diffstat (limited to 'libempathy/empathy-utils.h')
-rw-r--r-- | libempathy/empathy-utils.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.h b/libempathy/empathy-utils.h index d36503c7f..8179c90b0 100644 --- a/libempathy/empathy-utils.h +++ b/libempathy/empathy-utils.h @@ -40,8 +40,15 @@ #define EMPATHY_GET_PRIV(obj,type) ((type##Priv *) ((type *) obj)->priv) #define EMP_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0') +#define EMPATHY_FT_ERROR_QUARK g_quark_from_static_string ("EmpathyFTError") + G_BEGIN_DECLS +typedef enum { + EMPATHY_FT_ERROR_FAILED, + EMPATHY_FT_ERROR_NOT_SUPPORTED +} EmpathyFTErrorEnum; + void empathy_init (void); /* Strings */ gchar * empathy_substring (const gchar *str, |