diff options
Diffstat (limited to 'libempathy/empathy-account.h')
-rw-r--r-- | libempathy/empathy-account.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy/empathy-account.h b/libempathy/empathy-account.h index efc8df713..f498e11e3 100644 --- a/libempathy/empathy-account.h +++ b/libempathy/empathy-account.h @@ -22,6 +22,7 @@ #define __EMPATHY_ACCOUNT_H__ #include <glib-object.h> +#include <gio/gio.h> #include <telepathy-glib/connection.h> @@ -71,6 +72,13 @@ gboolean empathy_account_is_enabled (EmpathyAccount *account); gboolean empathy_account_is_valid (EmpathyAccount *account); gboolean empathy_account_is_ready (EmpathyAccount *account); +void empathy_account_update_settings_async (EmpathyAccount *account, + const GHashTable *parameters, const gchar **unset_parameters, + GAsyncReadyCallback callback, gpointer user_data); + +gboolean empathy_account_update_settings_finish (EmpathyAccount *account, + GAsyncResult *result, GError **error); + void empathy_account_set_display_name (EmpathyAccount *account, const gchar *display_name); |