diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:22:24 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:22:24 +0800 |
commit | 584b98b1c352383f80d41713104d1a2fe5953e8b (patch) | |
tree | 153c372be1f056ff41ededf2e12c414fe9f1248d /libempathy/empathy-contact.h | |
parent | c68fcffc69b5c5941883965496f62f8b056868b0 (diff) | |
download | gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar.gz gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar.bz2 gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar.lz gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar.xz gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.tar.zst gsoc2013-empathy-584b98b1c352383f80d41713104d1a2fe5953e8b.zip |
Add empathy_contact_run_until_ready()
svn path=/trunk/; revision=749
Diffstat (limited to 'libempathy/empathy-contact.h')
-rw-r--r-- | libempathy/empathy-contact.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libempathy/empathy-contact.h b/libempathy/empathy-contact.h index 343bf2f49..7d72b908f 100644 --- a/libempathy/empathy-contact.h +++ b/libempathy/empathy-contact.h @@ -64,7 +64,7 @@ typedef enum { EMPATHY_CONTACT_READY_NONE = 0, EMPATHY_CONTACT_READY_ID = 1 << 0, EMPATHY_CONTACT_READY_HANDLE = 1 << 1, - EMPATHY_CONTACT_READY_ALIAS = 1 << 2, + EMPATHY_CONTACT_READY_NAME = 1 << 2, EMPATHY_CONTACT_READY_ALL = (1 << 3) - 1, } EmpathyContactReady; @@ -107,6 +107,9 @@ gboolean empathy_contact_can_voip (EmpathyContact *con gboolean empathy_contact_equal (gconstpointer v1, gconstpointer v2); guint empathy_contact_hash (gconstpointer key); +void empathy_contact_run_until_ready (EmpathyContact *contact, + EmpathyContactReady ready, + GMainLoop **loop); G_END_DECLS |