diff options
Diffstat (limited to 'generate/src/gabble-media-channel.h')
-rw-r--r-- | generate/src/gabble-media-channel.h | 160 |
1 files changed, 0 insertions, 160 deletions
diff --git a/generate/src/gabble-media-channel.h b/generate/src/gabble-media-channel.h deleted file mode 100644 index 9353c08f1..000000000 --- a/generate/src/gabble-media-channel.h +++ /dev/null @@ -1,160 +0,0 @@ -/* - * gabble-media-channel.h - Header for GabbleMediaChannel - * Copyright (C) 2005 Collabora Ltd. - * Copyright (C) 2005 Nokia Corporation - * - * 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 __GABBLE_MEDIA_CHANNEL_H__ -#define __GABBLE_MEDIA_CHANNEL_H__ - -#include <glib-object.h> - -G_BEGIN_DECLS - -typedef struct _GabbleMediaChannel GabbleMediaChannel; -typedef struct _GabbleMediaChannelClass GabbleMediaChannelClass; - -struct _GabbleMediaChannelClass { - GObjectClass parent_class; -}; - -struct _GabbleMediaChannel { - GObject parent; - - gpointer priv; -}; - -GType gabble_media_channel_get_type(void); - -/* TYPE MACROS */ -#define GABBLE_TYPE_MEDIA_CHANNEL \ - (gabble_media_channel_get_type()) -#define GABBLE_MEDIA_CHANNEL(obj) \ - (G_TYPE_CHECK_INSTANCE_CAST((obj), GABBLE_TYPE_MEDIA_CHANNEL, GabbleMediaChannel)) -#define GABBLE_MEDIA_CHANNEL_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_CAST((klass), GABBLE_TYPE_MEDIA_CHANNEL, GabbleMediaChannelClass)) -#define GABBLE_IS_MEDIA_CHANNEL(obj) \ - (G_TYPE_CHECK_INSTANCE_TYPE((obj), GABBLE_TYPE_MEDIA_CHANNEL)) -#define GABBLE_IS_MEDIA_CHANNEL_CLASS(klass) \ - (G_TYPE_CHECK_CLASS_TYPE((klass), GABBLE_TYPE_MEDIA_CHANNEL)) -#define GABBLE_MEDIA_CHANNEL_GET_CLASS(obj) \ - (G_TYPE_INSTANCE_GET_CLASS ((obj), GABBLE_TYPE_MEDIA_CHANNEL, GabbleMediaChannelClass)) - - -gboolean -gabble_media_channel_add_members (GabbleMediaChannel *self, - const GArray *contacts, - const gchar *message, - GError **error); - -gboolean -gabble_media_channel_close (GabbleMediaChannel *self, - GError **error); - -gboolean -gabble_media_channel_get_all_members (GabbleMediaChannel *self, - GArray **ret, - GArray **ret1, - GArray **ret2, - GError **error); - -gboolean -gabble_media_channel_get_channel_type (GabbleMediaChannel *self, - gchar **ret, - GError **error); - -gboolean -gabble_media_channel_get_group_flags (GabbleMediaChannel *self, - guint *ret, - GError **error); - -gboolean -gabble_media_channel_get_handle (GabbleMediaChannel *self, - guint *ret, - guint *ret1, - GError **error); - -gboolean -gabble_media_channel_get_handle_owners (GabbleMediaChannel *self, - const GArray *handles, - GArray **ret, - GError **error); - -gboolean -gabble_media_channel_get_interfaces (GabbleMediaChannel *self, - gchar ***ret, - GError **error); - -gboolean -gabble_media_channel_get_local_pending_members (GabbleMediaChannel *self, - GArray **ret, - GError **error); - -gboolean -gabble_media_channel_get_members (GabbleMediaChannel *self, - GArray **ret, - GError **error); - -gboolean -gabble_media_channel_get_remote_pending_members (GabbleMediaChannel *self, - GArray **ret, - GError **error); - -gboolean -gabble_media_channel_get_self_handle (GabbleMediaChannel *self, - guint *ret, - GError **error); - -gboolean -gabble_media_channel_get_session_handlers (GabbleMediaChannel *self, - GPtrArray **ret, - GError **error); - -gboolean -gabble_media_channel_list_streams (GabbleMediaChannel *self, - GPtrArray **ret, - GError **error); - -gboolean -gabble_media_channel_remove_members (GabbleMediaChannel *self, - const GArray *contacts, - const gchar *message, - GError **error); - -gboolean -gabble_media_channel_remove_streams (GabbleMediaChannel *self, - const GArray *streams, - GError **error); - -gboolean -gabble_media_channel_request_stream_direction (GabbleMediaChannel *self, - guint stream_id, - guint stream_direction, - GError **error); - -gboolean -gabble_media_channel_request_streams (GabbleMediaChannel *self, - guint contact_handle, - const GArray *types, - GPtrArray **ret, - GError **error); - - - -G_END_DECLS - -#endif /* #ifndef __GABBLE_MEDIA_CHANNEL_H__*/ |