aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-dispatcher.h
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2009-05-27 20:35:55 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2009-06-01 23:55:32 +0800
commitb430108ed73aad05a6cb6f94bdb7092abe4daebc (patch)
tree4524a41a369a202ed4a41dbbd6fa9115eb1c986b /libempathy/empathy-dispatcher.h
parent12ad94e68d9ad3d4258ae8fa0755528a22871b4b (diff)
downloadgsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar.gz
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar.bz2
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar.lz
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar.xz
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.tar.zst
gsoc2013-empathy-b430108ed73aad05a6cb6f94bdb7092abe4daebc.zip
Update the requestable channel classes API
Make it more complex, according to Sjoerd's comments.
Diffstat (limited to 'libempathy/empathy-dispatcher.h')
-rw-r--r--libempathy/empathy-dispatcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy/empathy-dispatcher.h b/libempathy/empathy-dispatcher.h
index 95dd70d08..d6c83f6c1 100644
--- a/libempathy/empathy-dispatcher.h
+++ b/libempathy/empathy-dispatcher.h
@@ -59,7 +59,7 @@ typedef void (EmpathyDispatcherRequestCb) (
EmpathyDispatchOperation *dispatch, const GError *error,
gpointer user_data);
typedef void (EmpathyDispatcherFindChannelClassCb) (
- GStrv channel_class, gpointer user_data);
+ GList *channel_classes, gpointer user_data);
GType empathy_dispatcher_get_type (void) G_GNUC_CONST;
@@ -91,10 +91,10 @@ void empathy_dispatcher_find_requestable_channel_classes_async
EmpathyDispatcherFindChannelClassCb callback, gpointer user_data,
const char *first_property_name, ...);
-GStrv empathy_dispatcher_find_requestable_channel_classes
+GList * empathy_dispatcher_find_requestable_channel_classes
(EmpathyDispatcher *dispatcher, TpConnection *connection,
const gchar *channel_type, guint handle_type,
- const gchar *first_property_name, ...);
+ const char *first_property_name, ...);
/* Get the dispatcher singleton */
EmpathyDispatcher * empathy_dispatcher_dup_singleton (void);