summaryrefslogtreecommitdiff
path: root/telepathy-logger/channel-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'telepathy-logger/channel-internal.h')
-rw-r--r--telepathy-logger/channel-internal.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/telepathy-logger/channel-internal.h b/telepathy-logger/channel-internal.h
deleted file mode 100644
index c98501f..0000000
--- a/telepathy-logger/channel-internal.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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 <cosimo.alfarano@collabora.co.uk>
- */
-
-#ifndef __TPL_CHANNEL_H__
-#define __TPL_CHANNEL_H__
-
-#include <gio/gio.h>
-#include <glib.h>
-#include <glib-object.h>
-#include <telepathy-glib/telepathy-glib.h>
-
-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__