diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 22:02:59 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:17:28 +0800 |
commit | 4bd37c3ad42d29cd7545e8ddd0f94594daff52a8 (patch) | |
tree | 9f08b7bdac536c2cec03a84d04a78e2c5272c3d3 /libempathy | |
parent | 84e2c127de4b21c0bbd53fa46ab00bf7d497969b (diff) | |
download | gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar.gz gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar.bz2 gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar.lz gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar.xz gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.tar.zst gsoc2013-empathy-4bd37c3ad42d29cd7545e8ddd0f94594daff52a8.zip |
document empathy_call_handler_new_for_contact_with_streams and empathy_call_handler_new_for_contact
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-call-handler.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libempathy/empathy-call-handler.c b/libempathy/empathy-call-handler.c index 0c84595d5..3172499d9 100644 --- a/libempathy/empathy-call-handler.c +++ b/libempathy/empathy-call-handler.c @@ -264,6 +264,14 @@ empathy_call_handler_class_init (EmpathyCallHandlerClass *klass) 0); } +/** + * empathy_call_handler_new_for_contact: + * @contact: an #EmpathyContact + * + * Creates a new #EmpathyCallHandler with contact @contact. + * + * Return value: a new #EmpathyCallHandler + */ EmpathyCallHandler * empathy_call_handler_new_for_contact (EmpathyContact *contact) { @@ -271,6 +279,16 @@ empathy_call_handler_new_for_contact (EmpathyContact *contact) "contact", contact, NULL)); } +/** + * empathy_call_handler_new_for_contact_with_streams: + * @contact: an #EmpathyContact + * @audio: if %TRUE the call will be started with audio + * @video: if %TRUE the call will be started with video + * + * Creates a new #EmpathyCallHandler with contact @contact. + * + * Return value: a new #EmpathyCallHandler + */ EmpathyCallHandler * empathy_call_handler_new_for_contact_with_streams (EmpathyContact *contact, gboolean audio, gboolean video) |