diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 22:06:23 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 23:17:28 +0800 |
commit | 6cbe46ff82e331bd8d7101980908928611b73b8f (patch) | |
tree | f36229996e905c7822bb2c18aa8382431889a83f /libempathy | |
parent | 4bd37c3ad42d29cd7545e8ddd0f94594daff52a8 (diff) | |
download | gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar.gz gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar.bz2 gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar.lz gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar.xz gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.tar.zst gsoc2013-empathy-6cbe46ff82e331bd8d7101980908928611b73b8f.zip |
document empathy_call_factory_new_call and empathy_call_factory_new_call_with_streams
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-call-factory.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libempathy/empathy-call-factory.c b/libempathy/empathy-call-factory.c index 87f0593be..d02b58327 100644 --- a/libempathy/empathy-call-factory.c +++ b/libempathy/empathy-call-factory.c @@ -132,6 +132,15 @@ empathy_call_factory_get (void) return EMPATHY_CALL_FACTORY (call_factory); } +/** + * empathy_call_factory_new_call_with_streams: + * @factory: an #EmpathyCallFactory + * @contact: an #EmpathyContact + * @initial_audio: if %TRUE the call will be started with audio + * @initial_video: if %TRUE the call will be started with video + * + * Initiate a new call with @contact. + */ void empathy_call_factory_new_call_with_streams (EmpathyCallFactory *factory, EmpathyContact *contact, @@ -153,6 +162,13 @@ empathy_call_factory_new_call_with_streams (EmpathyCallFactory *factory, } +/** + * empathy_call_factory_new_call: + * @factory: an #EmpathyCallFactory + * @contact: an #EmpathyContact + * + * Initiate a new call with @contact. + */ void empathy_call_factory_new_call (EmpathyCallFactory *factory, EmpathyContact *contact) |