/* * Copyright (C) 2009 Collabora Ltd. * * 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 * * Authors: Cosimo Alfarano */ #ifndef __TPL_CHANNEL_H__ #define __TPL_CHANNEL_H__ #include #include #include #include #include #include G_BEGIN_DECLS #define TPL_TYPE_CHANNEL (_tpl_channel_get_type ()) #define TPL_CHANNEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TPL_TYPE_CHANNEL, TplChannel)) #define TPL_IS_CHANNEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TPL_TYPE_CHANNEL)) #define TPL_CHANNEL_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), TPL_TYPE_CHANNEL, TplChannelInterface)) typedef struct _TplChannel TplChannel; typedef struct _TplChannelInterface TplChannelInterface; struct _TplChannelInterface { GTypeInterface g_iface; void (*prepare_async) (TplChannel *self, GAsyncReadyCallback cb, gpointer user_data); gboolean (*prepare_finish) (TplChannel *self, GAsyncResult *result, GError **error); }; GType _tpl_channel_get_type (void) G_GNUC_CONST; void _tpl_channel_prepare_async (TplChannel *self, GAsyncReadyCallback cb, gpointer user_data); gboolean _tpl_channel_prepare_finish (TplChannel *self, GAsyncResult *result, GError **error); G_END_DECLS #endif // __TPL_CHANNEL_H__