summaryrefslogtreecommitdiff
path: root/telepathy-glib/channel-dispatch-operation-internal.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-10 11:36:27 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-05-10 11:37:55 +0200
commit4c3b73e98fbf88d24f3fd42a998511b055c89001 (patch)
treecb3e55cde37e36a5447528e9f45b1170b20fb6b9 /telepathy-glib/channel-dispatch-operation-internal.h
parentdb9240a129ae9af2cf56ec9aa9c7622be22f60d9 (diff)
downloadtelepathy-glib-4c3b73e98fbf88d24f3fd42a998511b055c89001.tar.gz
add _tp_channel_dispatch_operation_new_with_objects
This can be used by tp-glib to create a new CDO using existing proxies rather than creating new ones.
Diffstat (limited to 'telepathy-glib/channel-dispatch-operation-internal.h')
-rw-r--r--telepathy-glib/channel-dispatch-operation-internal.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/telepathy-glib/channel-dispatch-operation-internal.h b/telepathy-glib/channel-dispatch-operation-internal.h
new file mode 100644
index 000000000..4e19acaaa
--- /dev/null
+++ b/telepathy-glib/channel-dispatch-operation-internal.h
@@ -0,0 +1,39 @@
+/*
+ * channel-dispatch-operation-internal.h - proxy for channels awaiting approval
+ *
+ * Copyright © 2010 Collabora Ltd. <http://www.collabora.co.uk/>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef TP_CHANNEL_DISPATCH_OPERATION_INTERNAL_H
+#define TP_CHANNEL_DISPATCH_OPERATION_INTERNAL_H
+
+#include <telepathy-glib/channel-dispatch-operation.h>
+
+G_BEGIN_DECLS
+
+TpChannelDispatchOperation * _tp_channel_dispatch_operation_new_with_objects (
+ TpDBusDaemon *bus_daemon,
+ const gchar *object_path,
+ GHashTable *immutable_properties,
+ TpAccount *account,
+ TpConnection *connection,
+ GPtrArray *channels,
+ GError **error);
+
+G_END_DECLS
+
+#endif