diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-11 21:26:33 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 23:59:22 +0800 |
commit | fe838cf55249bf53c3f42098feb55edd5318bf34 (patch) | |
tree | 65ce41a2dff690a71f2964015ede40f6014dad56 /libempathy/empathy-tp-chat.h | |
parent | a6a3c811cbd2bdd64f6d49702bf1ad2f2fdf027c (diff) | |
download | gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar.gz gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar.bz2 gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar.lz gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar.xz gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.tar.zst gsoc2013-empathy-fe838cf55249bf53c3f42098feb55edd5318bf34.zip |
add empathy_tp_chat_provide_password_{async,finish}
Diffstat (limited to 'libempathy/empathy-tp-chat.h')
-rw-r--r-- | libempathy/empathy-tp-chat.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libempathy/empathy-tp-chat.h b/libempathy/empathy-tp-chat.h index 4dec0cd28..013a926bf 100644 --- a/libempathy/empathy-tp-chat.h +++ b/libempathy/empathy-tp-chat.h @@ -88,6 +88,15 @@ void empathy_tp_chat_acknowledge_messages (EmpathyTpChat *chat, gboolean empathy_tp_chat_password_needed (EmpathyTpChat *chat); +void empathy_tp_chat_provide_password_async (EmpathyTpChat *chat, + const gchar *password, + GAsyncReadyCallback callback, + gpointer user_data); + +gboolean empathy_tp_chat_provide_password_finish (EmpathyTpChat *chat, + GAsyncResult *result, + GError **error); + G_END_DECLS #endif /* __EMPATHY_TP_CHAT_H__ */ |