summaryrefslogtreecommitdiff
path: root/telepathy-glib/client-channel-factory.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-21 13:12:15 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-10-21 15:06:19 +0200
commitd153d9db583dba0957f95a911f3b6f961a7f0e86 (patch)
tree61d02113276d306f3effbc5e6aa050d553ceb60e /telepathy-glib/client-channel-factory.h
parentdaeb78325ad021528063d4c848594de91bfdd87b (diff)
downloadtelepathy-glib-d153d9db583dba0957f95a911f3b6f961a7f0e86.tar.gz
add tp_client_channel_factory_get_channel_features() (fdo #31001)
Diffstat (limited to 'telepathy-glib/client-channel-factory.h')
-rw-r--r--telepathy-glib/client-channel-factory.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/telepathy-glib/client-channel-factory.h b/telepathy-glib/client-channel-factory.h
index 23399f03a..3326d2dda 100644
--- a/telepathy-glib/client-channel-factory.h
+++ b/telepathy-glib/client-channel-factory.h
@@ -37,6 +37,9 @@ struct _TpClientChannelFactoryInterface {
const gchar *path,
GHashTable *properties,
GError **error);
+
+ GArray * (* get_channel_features) (TpClientChannelFactoryInterface *self,
+ TpChannel *channel);
};
GType tp_client_channel_factory_get_type (void);
@@ -59,6 +62,10 @@ TpChannel * tp_client_channel_factory_create_channel (
GHashTable *properties,
GError **error);
+GArray * tp_client_channel_factory_get_channel_features (
+ TpClientChannelFactoryInterface *self,
+ TpChannel *channel);
+
G_END_DECLS
#endif