diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 18:05:56 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2010-12-06 18:05:56 +0800 |
commit | 085edd72db61d923a639d874f44c9ed2805e75a8 (patch) | |
tree | 2689215fe9505c5e39644fd6d7175e91e4b3bc43 /libempathy/empathy-keyring.h | |
parent | bc099434f22a78d09d0dad3d5006ad836ab11d02 (diff) | |
download | gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar.gz gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar.bz2 gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar.lz gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar.xz gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.tar.zst gsoc2013-empathy-085edd72db61d923a639d874f44c9ed2805e75a8.zip |
keyring: add set_password_{async,finish} functions
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'libempathy/empathy-keyring.h')
-rw-r--r-- | libempathy/empathy-keyring.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy/empathy-keyring.h b/libempathy/empathy-keyring.h index 2c062e1cd..015b7ae86 100644 --- a/libempathy/empathy-keyring.h +++ b/libempathy/empathy-keyring.h @@ -31,6 +31,13 @@ void empathy_keyring_get_password_async (TpAccount *account, const gchar * empathy_keyring_get_password_finish (TpAccount *account, GAsyncResult *result, GError **error); +void empathy_keyring_set_password_async (TpAccount *account, + const gchar *password, GAsyncReadyCallback callback, + gpointer user_data); + +gboolean empathy_keyring_set_password_finish (TpAccount *account, + GAsyncResult *result, GError **error); + G_END_DECLS #endif /* __EMPATHY_KEYRING_H__ */ |