]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-call-factory.h
add myself to AUTHORS
[empathy.git] / libempathy / empathy-call-factory.h
index 36866e7433754e4e95f1fc21f8ad33a87b03ef0a..27b2059730a87da579cdd16aefc8c4bdb3c088af 100644 (file)
@@ -37,13 +37,14 @@ struct _EmpathyCallFactoryClass {
 
 struct _EmpathyCallFactory {
     GObject parent;
+    gpointer priv;
 };
 
-GType empathy_call_factory_get_type(void);
+GType empathy_call_factory_get_type (void);
 
 /* TYPE MACROS */
 #define EMPATHY_TYPE_CALL_FACTORY \
-  (empathy_call_factory_get_type())
+  (empathy_call_factory_get_type ())
 #define EMPATHY_CALL_FACTORY(obj) \
   (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_CALL_FACTORY, \
     EmpathyCallFactory))
@@ -63,11 +64,14 @@ EmpathyCallFactory *empathy_call_factory_initialise (void);
 
 EmpathyCallFactory *empathy_call_factory_get (void);
 
-EmpathyCallHandler *empathy_call_factory_new_call (
-  EmpathyCallFactory *factory, EmpathyContact *contact);
+void empathy_call_factory_new_call (EmpathyCallFactory *factory,
+  EmpathyContact *contact);
 
-EmpathyCallHandler *empathy_call_factory_claim_channel (
-  EmpathyCallFactory *factory, EmpathyDispatchOperation *operation);
+void empathy_call_factory_new_call_with_streams (EmpathyCallFactory *factory,
+  EmpathyContact *contact, gboolean initial_audio, gboolean initial_video);
+
+void empathy_call_factory_claim_channel (EmpathyCallFactory *factory,
+  EmpathyDispatchOperation *operation);
 
 G_END_DECLS