summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-media-call-content.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-11-24 16:45:07 +0100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-01-10 09:52:44 +0100
commitc2c1608cf89393cb79d3c88b6427a8c1186931cb (patch)
tree89aae5c5b63efdacc7e2c79822c99039a2bdfb75 /telepathy-glib/base-media-call-content.h
parent72b1b1cca4a9efb0c8b88c079d5ebd704d975f48 (diff)
downloadtelepathy-glib-c2c1608cf89393cb79d3c88b6427a8c1186931cb.tar.gz
Add TpBaseMediaCallContent and TpCallContentMediaDescription objects
Diffstat (limited to 'telepathy-glib/base-media-call-content.h')
-rw-r--r--telepathy-glib/base-media-call-content.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/telepathy-glib/base-media-call-content.h b/telepathy-glib/base-media-call-content.h
new file mode 100644
index 000000000..c6e55953a
--- /dev/null
+++ b/telepathy-glib/base-media-call-content.h
@@ -0,0 +1,79 @@
+/*
+ * base-media-call-content.h - Header for TpBaseMediaCallContent
+ * Copyright (C) 2009-2011 Collabora Ltd.
+ * @author Sjoerd Simons <sjoerd.simons@collabora.co.uk>
+ * @author Xavier Claessens <xavier.claessens@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_BASE_MEDIA_CALL_CONTENT_H__
+#define __TP_BASE_MEDIA_CALL_CONTENT_H__
+
+#include <gio/gio.h>
+
+#include <telepathy-glib/base-call-content.h>
+#include <telepathy-glib/call-content-media-description.h>
+
+G_BEGIN_DECLS
+
+typedef struct _TpBaseMediaCallContent TpBaseMediaCallContent;
+typedef struct _TpBaseMediaCallContentPrivate TpBaseMediaCallContentPrivate;
+typedef struct _TpBaseMediaCallContentClass TpBaseMediaCallContentClass;
+
+struct _TpBaseMediaCallContentClass {
+ /*<private>*/
+ TpBaseCallContentClass parent_class;
+
+ gpointer future[4];
+};
+
+struct _TpBaseMediaCallContent {
+ /*<private>*/
+ TpBaseCallContent parent;
+
+ TpBaseMediaCallContentPrivate *priv;
+};
+
+GType tp_base_media_call_content_get_type (void);
+
+/* TYPE MACROS */
+#define TP_TYPE_BASE_MEDIA_CALL_CONTENT \
+ (tp_base_media_call_content_get_type ())
+#define TP_BASE_MEDIA_CALL_CONTENT(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ TP_TYPE_BASE_MEDIA_CALL_CONTENT, TpBaseMediaCallContent))
+#define TP_BASE_MEDIA_CALL_CONTENT_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), \
+ TP_TYPE_BASE_MEDIA_CALL_CONTENT, TpBaseMediaCallContentClass))
+#define TP_IS_BASE_MEDIA_CALL_CONTENT(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_BASE_MEDIA_CALL_CONTENT))
+#define TP_IS_BASE_MEDIA_CALL_CONTENT_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_BASE_MEDIA_CALL_CONTENT))
+#define TP_BASE_MEDIA_CALL_CONTENT_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+ TP_TYPE_BASE_MEDIA_CALL_CONTENT, TpBaseMediaCallContentClass))
+
+GHashTable *tp_base_media_call_content_get_local_media_description (
+ TpBaseMediaCallContent *self,
+ TpHandle contact);
+
+void tp_base_media_call_content_offer_media_description (
+ TpBaseMediaCallContent *self,
+ TpCallContentMediaDescription *md);
+
+G_END_DECLS
+
+#endif /* #ifndef __TP_BASE_MEDIA_CALL_CONTENT_H__*/