summaryrefslogtreecommitdiff
path: root/src/idle-connection.h
diff options
context:
space:
mode:
authorOlli Salli <olli.salli@collabora.co.uk>2007-04-05 18:05:31 +0000
committerOlli Salli <olli.salli@collabora.co.uk>2007-04-05 18:05:31 +0000
commit259e34fa5aa97d55f48f25e8b2d45216a8635828 (patch)
treeccd08d712c412635bb5006a40f3c66d623a311db /src/idle-connection.h
parentac9084f75e502815ce05bb39593df88cd27d79ea (diff)
downloadtelepathy-idle-259e34fa5aa97d55f48f25e8b2d45216a8635828.tar.gz
Remove the TOTAL CRACKALL implementation of Presence
20070405180531-9db4d-a38a8379863a578a13288c31cf62518761ab47d1.gz
Diffstat (limited to 'src/idle-connection.h')
-rw-r--r--src/idle-connection.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/idle-connection.h b/src/idle-connection.h
index 725c4be..dd5d5e4 100644
--- a/src/idle-connection.h
+++ b/src/idle-connection.h
@@ -30,7 +30,6 @@
typedef struct _IdleConnection IdleConnection;
typedef struct _IdleConnectionClass IdleConnectionClass;
-typedef struct _IdleContactPresence IdleContactPresence;
#include "idle-handles.h"
#include "idle-parser.h"
@@ -39,14 +38,6 @@ typedef struct _IdleContactPresence IdleContactPresence;
G_BEGIN_DECLS
-typedef enum
-{
- IDLE_PRESENCE_AVAILABLE,
- IDLE_PRESENCE_AWAY,
- IDLE_PRESENCE_OFFLINE,
- LAST_IDLE_PRESENCE_ENUM,
-} IdlePresenceState;
-
struct _IdleConnectionClass
{
GObjectClass parent_class;
@@ -60,8 +51,6 @@ struct _IdleConnection
gchar *object_path;
};
-void idle_contact_presence_free(IdleContactPresence *cp);
-
GType idle_connection_get_type(void);
/* TYPE MACROS */
@@ -83,25 +72,18 @@ gboolean _idle_connection_send(IdleConnection *conn, const gchar *msg);
void _idle_connection_client_hold_handle(IdleConnection *conn, gchar *client_name, TpHandle handle, TpHandleType type);
gboolean _idle_connection_client_release_handle(IdleConnection *conn, gchar *client_name, TpHandle handle, TpHandleType type);
-gboolean idle_connection_add_status (IdleConnection *obj, const gchar *status, GHashTable *parms, GError **error);
-gboolean idle_connection_clear_status (IdleConnection *obj, GError **error);
gboolean idle_connection_connect (IdleConnection *obj, GError **error);
gboolean idle_connection_disconnect (IdleConnection *obj, GError **error);
gboolean idle_connection_get_interfaces (IdleConnection *obj, gchar ***ret, GError **error);
gboolean idle_connection_get_protocol (IdleConnection *obj, gchar **ret, GError **error);
gboolean idle_connection_get_self_handle (IdleConnection *obj, guint*ret, GError **error);
gboolean idle_connection_get_status (IdleConnection *obj, guint*ret, GError **error);
-gboolean idle_connection_get_statuses (IdleConnection *obj, GHashTable **ret, GError **error);
gboolean idle_connection_hold_handles (IdleConnection *obj, guint handle_type, const GArray *handles, DBusGMethodInvocation *context);
gboolean idle_connection_inspect_handles (IdleConnection *obj, guint handle_type, const GArray *handles, DBusGMethodInvocation *context);
gboolean idle_connection_list_channels (IdleConnection *obj, GPtrArray **ret, GError **error);
gboolean idle_connection_release_handles (IdleConnection *obj, guint handle_type, const GArray *handles, DBusGMethodInvocation *context);
-gboolean idle_connection_remove_status (IdleConnection *obj, const gchar *status, GError **error);
gboolean idle_connection_request_channel (IdleConnection *obj, const gchar *type, guint handle_type, guint handle, gboolean suppress_handler, DBusGMethodInvocation *ctx);
gboolean idle_connection_request_handles (IdleConnection *obj, guint handle_type, const gchar **names, DBusGMethodInvocation *context);
-gboolean idle_connection_request_presence (IdleConnection *obj, const GArray *contacts, GError **error);
-gboolean idle_connection_set_last_activity_time (IdleConnection *obj, guint time, GError **error);
-gboolean idle_connection_set_status (IdleConnection *obj, GHashTable *statuses, GError **error);
gboolean idle_connection_hton(IdleConnection *obj, const gchar *input, gchar **output, GError **error);
gboolean idle_connection_ntoh(IdleConnection *obj, const gchar *input, gchar **output, GError **error);