base-connection-manager.h   base-connection-manager.h 
skipping to change at line 30 skipping to change at line 30
*/ */
#ifndef __TP_BASE_CONNECTION_MANAGER_H__ #ifndef __TP_BASE_CONNECTION_MANAGER_H__
#define __TP_BASE_CONNECTION_MANAGER_H__ #define __TP_BASE_CONNECTION_MANAGER_H__
#include <dbus/dbus-glib.h> #include <dbus/dbus-glib.h>
#include <glib-object.h> #include <glib-object.h>
#include <telepathy-glib/base-connection.h> #include <telepathy-glib/base-connection.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/proxy.h>
#include <telepathy-glib/svc-connection-manager.h> #include <telepathy-glib/svc-connection-manager.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpCMParamSpec TpCMParamSpec; typedef struct _TpCMParamSpec TpCMParamSpec;
typedef gboolean (*TpCMParamFilter) (const TpCMParamSpec *paramspec, typedef gboolean (*TpCMParamFilter) (const TpCMParamSpec *paramspec,
GValue *value, GError **error); GValue *value, GError **error);
gboolean tp_cm_param_filter_string_nonempty (const TpCMParamSpec *paramspec , gboolean tp_cm_param_filter_string_nonempty (const TpCMParamSpec *paramspec ,
skipping to change at line 128 skipping to change at line 129
/*<private>*/ /*<private>*/
GObject parent; GObject parent;
TpBaseConnectionManagerPrivate *priv; TpBaseConnectionManagerPrivate *priv;
}; };
GType tp_base_connection_manager_get_type (void); GType tp_base_connection_manager_get_type (void);
gboolean tp_base_connection_manager_register (TpBaseConnectionManager *self ); gboolean tp_base_connection_manager_register (TpBaseConnectionManager *self );
TpDBusDaemon *tp_base_connection_manager_get_dbus_daemon (
TpBaseConnectionManager *self);
/* TYPE MACROS */ /* TYPE MACROS */
#define TP_TYPE_BASE_CONNECTION_MANAGER \ #define TP_TYPE_BASE_CONNECTION_MANAGER \
(tp_base_connection_manager_get_type ()) (tp_base_connection_manager_get_type ())
#define TP_BASE_CONNECTION_MANAGER(obj) \ #define TP_BASE_CONNECTION_MANAGER(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_BASE_CONNECTION_MANAGER, \ (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_BASE_CONNECTION_MANAGER, \
TpBaseConnectionManager)) TpBaseConnectionManager))
#define TP_BASE_CONNECTION_MANAGER_CLASS(klass) \ #define TP_BASE_CONNECTION_MANAGER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_BASE_CONNECTION_MANAGER, \ (G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_BASE_CONNECTION_MANAGER, \
TpBaseConnectionManagerClass)) TpBaseConnectionManagerClass))
#define TP_IS_BASE_CONNECTION_MANAGER(obj) \ #define TP_IS_BASE_CONNECTION_MANAGER(obj) \
 End of changes. 2 change blocks. 
0 lines changed or deleted 4 lines changed or added


 base-connection.h   base-connection.h 
skipping to change at line 32 skipping to change at line 32
#ifndef __TP_BASE_CONNECTION_H__ #ifndef __TP_BASE_CONNECTION_H__
#define __TP_BASE_CONNECTION_H__ #define __TP_BASE_CONNECTION_H__
#include <dbus/dbus-glib.h> #include <dbus/dbus-glib.h>
#include <glib-object.h> #include <glib-object.h>
#include <telepathy-glib/channel-manager.h> #include <telepathy-glib/channel-manager.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/enums.h> #include <telepathy-glib/enums.h>
#include <telepathy-glib/handle-repo.h> #include <telepathy-glib/handle-repo.h>
#include <telepathy-glib/proxy.h>
#include <telepathy-glib/svc-connection.h> #include <telepathy-glib/svc-connection.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpBaseConnection TpBaseConnection; typedef struct _TpBaseConnection TpBaseConnection;
typedef struct _TpBaseConnectionClass TpBaseConnectionClass; typedef struct _TpBaseConnectionClass TpBaseConnectionClass;
typedef struct _TpBaseConnectionPrivate TpBaseConnectionPrivate; typedef struct _TpBaseConnectionPrivate TpBaseConnectionPrivate;
typedef void (*TpBaseConnectionProc) (TpBaseConnection *self); typedef void (*TpBaseConnectionProc) (TpBaseConnection *self);
skipping to change at line 192 skipping to change at line 193
if (c->status != TP_CONNECTION_STATUS_CONNECTED) \ if (c->status != TP_CONNECTION_STATUS_CONNECTED) \
{ \ { \
GError e = { TP_ERRORS, TP_ERROR_DISCONNECTED, \ GError e = { TP_ERRORS, TP_ERROR_DISCONNECTED, \
(gchar *) "Connection is disconnected" }; \ (gchar *) "Connection is disconnected" }; \
\ \
dbus_g_method_return_error ((context), &e); \ dbus_g_method_return_error ((context), &e); \
return; \ return; \
} \ } \
} G_STMT_END } G_STMT_END
TpDBusDaemon *tp_base_connection_get_dbus_daemon (TpBaseConnection *self);
G_END_DECLS G_END_DECLS
#endif /* #ifndef __TP_BASE_CONNECTION_H__*/ #endif /* #ifndef __TP_BASE_CONNECTION_H__*/
 End of changes. 2 change blocks. 
0 lines changed or deleted 3 lines changed or added


 channel.h   channel.h 
skipping to change at line 117 skipping to change at line 117
TpChannelGroupFlags tp_channel_group_get_flags (TpChannel *self); TpChannelGroupFlags tp_channel_group_get_flags (TpChannel *self);
const TpIntSet *tp_channel_group_get_members (TpChannel *self); const TpIntSet *tp_channel_group_get_members (TpChannel *self);
const TpIntSet *tp_channel_group_get_local_pending (TpChannel *self); const TpIntSet *tp_channel_group_get_local_pending (TpChannel *self);
const TpIntSet *tp_channel_group_get_remote_pending (TpChannel *self); const TpIntSet *tp_channel_group_get_remote_pending (TpChannel *self);
gboolean tp_channel_group_get_local_pending_info (TpChannel *self, gboolean tp_channel_group_get_local_pending_info (TpChannel *self,
TpHandle local_pending, TpHandle *actor, TpHandle local_pending, TpHandle *actor,
TpChannelGroupChangeReason *reason, const gchar **message); TpChannelGroupChangeReason *reason, const gchar **message);
TpHandle tp_channel_group_get_handle_owner (TpChannel *self, TpHandle handl e); TpHandle tp_channel_group_get_handle_owner (TpChannel *self, TpHandle handl e);
#define TP_CHANNEL_FEATURE_CORE \
tp_channel_get_feature_quark_core ()
GQuark tp_channel_get_feature_quark_core (void) G_GNUC_CONST;
#define TP_CHANNEL_FEATURE_GROUP \
tp_channel_get_feature_quark_group ()
GQuark tp_channel_get_feature_quark_group (void) G_GNUC_CONST;
#define TP_CHANNEL_FEATURE_CHAT_STATES \
tp_channel_get_feature_quark_chat_states ()
GQuark tp_channel_get_feature_quark_chat_states (void) G_GNUC_CONST;
TpChannelChatState tp_channel_get_chat_state (TpChannel *self,
TpHandle contact);
G_END_DECLS G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-channel.h> #include <telepathy-glib/_gen/tp-cli-channel.h>
#endif #endif
 End of changes. 1 change blocks. 
0 lines changed or deleted 15 lines changed or added


 connection-manager.h   connection-manager.h 
skipping to change at line 36 skipping to change at line 36
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/proxy.h> #include <telepathy-glib/proxy.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpConnectionManager TpConnectionManager; typedef struct _TpConnectionManager TpConnectionManager;
typedef struct _TpConnectionManagerClass TpConnectionManagerClass; typedef struct _TpConnectionManagerClass TpConnectionManagerClass;
typedef struct _TpConnectionManagerPrivate TpConnectionManagerPrivate; typedef struct _TpConnectionManagerPrivate TpConnectionManagerPrivate;
GType tp_connection_manager_get_type (void); GType tp_connection_manager_get_type (void);
GType tp_connection_manager_param_get_type (void);
GType tp_connection_manager_protocol_get_type (void);
/* TYPE MACROS */ /* TYPE MACROS */
#define TP_TYPE_CONNECTION_MANAGER \ #define TP_TYPE_CONNECTION_MANAGER \
(tp_connection_manager_get_type ()) (tp_connection_manager_get_type ())
#define TP_CONNECTION_MANAGER(obj) \ #define TP_CONNECTION_MANAGER(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_CONNECTION_MANAGER, \ (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_CONNECTION_MANAGER, \
TpConnectionManager)) TpConnectionManager))
#define TP_CONNECTION_MANAGER_CLASS(klass) \ #define TP_CONNECTION_MANAGER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_CONNECTION_MANAGER, \ (G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_CONNECTION_MANAGER, \
TpConnectionManagerClass)) TpConnectionManagerClass))
#define TP_IS_CONNECTION_MANAGER(obj) \ #define TP_IS_CONNECTION_MANAGER(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_CONNECTION_MANAGER)) (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_CONNECTION_MANAGER))
#define TP_IS_CONNECTION_MANAGER_CLASS(klass) \ #define TP_IS_CONNECTION_MANAGER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_CONNECTION_MANAGER)) (G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_CONNECTION_MANAGER))
#define TP_CONNECTION_MANAGER_GET_CLASS(obj) \ #define TP_CONNECTION_MANAGER_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONNECTION_MANAGER, \ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONNECTION_MANAGER, \
TpConnectionManagerClass)) TpConnectionManagerClass))
#define TP_TYPE_CONNECTION_MANAGER_PARAM \
(tp_connection_manager_param_get_type ())
#define TP_TYPE_CONNECTION_MANAGER_PROTOCOL \
(tp_connection_manager_protocol_get_type ())
typedef struct _TpConnectionManagerParam TpConnectionManagerParam; typedef struct _TpConnectionManagerParam TpConnectionManagerParam;
struct _TpConnectionManagerParam struct _TpConnectionManagerParam
{ {
/*<public>*/ /*<public>*/
gchar *name; gchar *name;
gchar *dbus_signature; gchar *dbus_signature;
GValue default_value; GValue default_value;
guint flags; guint flags;
gpointer priv; gpointer priv;
skipping to change at line 176 skipping to change at line 183
const TpConnectionManagerParam *param); const TpConnectionManagerParam *param);
gboolean tp_connection_manager_param_is_secret ( gboolean tp_connection_manager_param_is_secret (
const TpConnectionManagerParam *param); const TpConnectionManagerParam *param);
gboolean tp_connection_manager_param_is_dbus_property ( gboolean tp_connection_manager_param_is_dbus_property (
const TpConnectionManagerParam *param); const TpConnectionManagerParam *param);
gboolean tp_connection_manager_param_get_default ( gboolean tp_connection_manager_param_get_default (
const TpConnectionManagerParam *param, GValue *value); const TpConnectionManagerParam *param, GValue *value);
void tp_connection_manager_init_known_interfaces (void); void tp_connection_manager_init_known_interfaces (void);
#define TP_CONNECTION_MANAGER_FEATURE_CORE \
(tp_connection_manager_get_feature_quark_core ())
GQuark tp_connection_manager_get_feature_quark_core (void) G_GNUC_CONST;
TpConnectionManagerParam *tp_connection_manager_param_copy (
const TpConnectionManagerParam *in);
void tp_connection_manager_param_free (TpConnectionManagerParam *param);
TpConnectionManagerProtocol *tp_connection_manager_protocol_copy (
const TpConnectionManagerProtocol *in);
void tp_connection_manager_protocol_free (TpConnectionManagerProtocol *prot
o);
G_END_DECLS G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-connection-manager.h> #include <telepathy-glib/_gen/tp-cli-connection-manager.h>
#endif #endif
 End of changes. 3 change blocks. 
0 lines changed or deleted 20 lines changed or added


 connection.h   connection.h 
skipping to change at line 25 skipping to change at line 25
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA
*/ */
#ifndef __TP_CONNECTION_H__ #ifndef __TP_CONNECTION_H__
#define __TP_CONNECTION_H__ #define __TP_CONNECTION_H__
#include <telepathy-glib/capabilities.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/enums.h> #include <telepathy-glib/enums.h>
#include <telepathy-glib/handle.h> #include <telepathy-glib/handle.h>
#include <telepathy-glib/proxy.h> #include <telepathy-glib/proxy.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpConnection TpConnection; typedef struct _TpConnection TpConnection;
typedef struct _TpConnectionPrivate TpConnectionPrivate; typedef struct _TpConnectionPrivate TpConnectionPrivate;
typedef struct _TpConnectionClass TpConnectionClass; typedef struct _TpConnectionClass TpConnectionClass;
skipping to change at line 83 skipping to change at line 84
TpConnectionClass)) TpConnectionClass))
TpConnection *tp_connection_new (TpDBusDaemon *dbus, const gchar *bus_name, TpConnection *tp_connection_new (TpDBusDaemon *dbus, const gchar *bus_name,
const gchar *object_path, GError **error) G_GNUC_WARN_UNUSED_RESULT; const gchar *object_path, GError **error) G_GNUC_WARN_UNUSED_RESULT;
TpConnectionStatus tp_connection_get_status (TpConnection *self, TpConnectionStatus tp_connection_get_status (TpConnection *self,
TpConnectionStatusReason *reason); TpConnectionStatusReason *reason);
TpHandle tp_connection_get_self_handle (TpConnection *self); TpHandle tp_connection_get_self_handle (TpConnection *self);
TpCapabilities * tp_connection_get_capabilities (TpConnection *self);
gboolean tp_connection_is_ready (TpConnection *self); gboolean tp_connection_is_ready (TpConnection *self);
#ifndef TP_DISABLE_DEPRECATED #ifndef TP_DISABLE_DEPRECATED
gboolean tp_connection_run_until_ready (TpConnection *self, gboolean tp_connection_run_until_ready (TpConnection *self,
gboolean connect, GError **error, gboolean connect, GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED; GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif #endif
typedef void (*TpConnectionWhenReadyCb) (TpConnection *connection, typedef void (*TpConnectionWhenReadyCb) (TpConnection *connection,
const GError *error, gpointer user_data); const GError *error, gpointer user_data);
skipping to change at line 115 skipping to change at line 118
GObject *weak_object); GObject *weak_object);
void tp_connection_init_known_interfaces (void); void tp_connection_init_known_interfaces (void);
gint tp_connection_presence_type_cmp_availability (TpConnectionPresenceType p1, gint tp_connection_presence_type_cmp_availability (TpConnectionPresenceType p1,
TpConnectionPresenceType p2); TpConnectionPresenceType p2);
gboolean tp_connection_parse_object_path (TpConnection *self, gchar **proto col, gboolean tp_connection_parse_object_path (TpConnection *self, gchar **proto col,
gchar **cm_name); gchar **cm_name);
#define TP_CONNECTION_FEATURE_CORE \
(tp_connection_get_feature_quark_core ())
GQuark tp_connection_get_feature_quark_core (void) G_GNUC_CONST;
#define TP_CONNECTION_FEATURE_CONNECTED \
(tp_connection_get_feature_quark_connected ())
GQuark tp_connection_get_feature_quark_connected (void) G_GNUC_CONST;
#define TP_CONNECTION_FEATURE_CAPABILITIES \
(tp_connection_get_feature_quark_capabilities ())
GQuark tp_connection_get_feature_quark_capabilities (void) G_GNUC_CONST;
/* connection-handles.c */ /* connection-handles.c */
typedef void (*TpConnectionHoldHandlesCb) (TpConnection *connection, typedef void (*TpConnectionHoldHandlesCb) (TpConnection *connection,
TpHandleType handle_type, guint n_handles, const TpHandle *handles, TpHandleType handle_type, guint n_handles, const TpHandle *handles,
const GError *error, gpointer user_data, GObject *weak_object); const GError *error, gpointer user_data, GObject *weak_object);
void tp_connection_hold_handles (TpConnection *self, gint timeout_ms, void tp_connection_hold_handles (TpConnection *self, gint timeout_ms,
TpHandleType handle_type, guint n_handles, const TpHandle *handles, TpHandleType handle_type, guint n_handles, const TpHandle *handles,
TpConnectionHoldHandlesCb callback, TpConnectionHoldHandlesCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object); gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
 End of changes. 3 change blocks. 
0 lines changed or deleted 15 lines changed or added


 contact.h   contact.h 
skipping to change at line 26 skipping to change at line 26
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA
*/ */
#ifndef __TP_CONTACT_H__ #ifndef __TP_CONTACT_H__
#define __TP_CONTACT_H__ #define __TP_CONTACT_H__
#include <glib-object.h> #include <glib-object.h>
#include <telepathy-glib/capabilities.h>
#include <telepathy-glib/connection.h> #include <telepathy-glib/connection.h>
#include <telepathy-glib/handle.h> #include <telepathy-glib/handle.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpContact TpContact; typedef struct _TpContact TpContact;
typedef struct _TpContactClass TpContactClass; typedef struct _TpContactClass TpContactClass;
typedef struct _TpContactPrivate TpContactPrivate; typedef struct _TpContactPrivate TpContactPrivate;
GType tp_contact_get_type (void) G_GNUC_CONST; GType tp_contact_get_type (void) G_GNUC_CONST;
skipping to change at line 58 skipping to change at line 59
(G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_CONTACT)) (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_CONTACT))
#define TP_CONTACT_GET_CLASS(obj) \ #define TP_CONTACT_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONTACT, \ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONTACT, \
TpContactClass)) TpContactClass))
typedef enum { typedef enum {
TP_CONTACT_FEATURE_ALIAS, TP_CONTACT_FEATURE_ALIAS,
TP_CONTACT_FEATURE_AVATAR_TOKEN, TP_CONTACT_FEATURE_AVATAR_TOKEN,
TP_CONTACT_FEATURE_PRESENCE, TP_CONTACT_FEATURE_PRESENCE,
TP_CONTACT_FEATURE_LOCATION, TP_CONTACT_FEATURE_LOCATION,
TP_CONTACT_FEATURE_CAPABILITIES,
NUM_TP_CONTACT_FEATURES NUM_TP_CONTACT_FEATURES
} TpContactFeature; } TpContactFeature;
/* Basic functionality, always available */ /* Basic functionality, always available */
TpConnection *tp_contact_get_connection (TpContact *self); TpConnection *tp_contact_get_connection (TpContact *self);
TpHandle tp_contact_get_handle (TpContact *self); TpHandle tp_contact_get_handle (TpContact *self);
const gchar *tp_contact_get_identifier (TpContact *self); const gchar *tp_contact_get_identifier (TpContact *self);
gboolean tp_contact_has_feature (TpContact *self, TpContactFeature feature) ; gboolean tp_contact_has_feature (TpContact *self, TpContactFeature feature) ;
/* TP_CONTACT_FEATURE_ALIAS */ /* TP_CONTACT_FEATURE_ALIAS */
skipping to change at line 81 skipping to change at line 83
const gchar *tp_contact_get_avatar_token (TpContact *self); const gchar *tp_contact_get_avatar_token (TpContact *self);
/* TP_CONTACT_FEATURE_PRESENCE */ /* TP_CONTACT_FEATURE_PRESENCE */
TpConnectionPresenceType tp_contact_get_presence_type (TpContact *self); TpConnectionPresenceType tp_contact_get_presence_type (TpContact *self);
const gchar *tp_contact_get_presence_status (TpContact *self); const gchar *tp_contact_get_presence_status (TpContact *self);
const gchar *tp_contact_get_presence_message (TpContact *self); const gchar *tp_contact_get_presence_message (TpContact *self);
/* TP_CONTACT_FEATURE_LOCATION */ /* TP_CONTACT_FEATURE_LOCATION */
GHashTable *tp_contact_get_location (TpContact *self); GHashTable *tp_contact_get_location (TpContact *self);
/* TP_CONTACT_FEATURE_CAPABILITIES */
TpCapabilities *tp_contact_get_capabilities (TpContact *self);
typedef void (*TpConnectionContactsByHandleCb) (TpConnection *connection, typedef void (*TpConnectionContactsByHandleCb) (TpConnection *connection,
guint n_contacts, TpContact * const *contacts, guint n_contacts, TpContact * const *contacts,
guint n_failed, const TpHandle *failed, guint n_failed, const TpHandle *failed,
const GError *error, gpointer user_data, GObject *weak_object); const GError *error, gpointer user_data, GObject *weak_object);
void tp_connection_get_contacts_by_handle (TpConnection *self, void tp_connection_get_contacts_by_handle (TpConnection *self,
guint n_handles, const TpHandle *handles, guint n_handles, const TpHandle *handles,
guint n_features, const TpContactFeature *features, guint n_features, const TpContactFeature *features,
TpConnectionContactsByHandleCb callback, TpConnectionContactsByHandleCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object); gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
 End of changes. 3 change blocks. 
0 lines changed or deleted 5 lines changed or added


 dbus-daemon.h   dbus-daemon.h 
skipping to change at line 90 skipping to change at line 90
typedef void (*TpDBusDaemonListNamesCb) (TpDBusDaemon *bus_daemon, typedef void (*TpDBusDaemonListNamesCb) (TpDBusDaemon *bus_daemon,
const gchar * const *names, const GError *error, gpointer user_data, const gchar * const *names, const GError *error, gpointer user_data,
GObject *weak_object); GObject *weak_object);
void tp_dbus_daemon_list_names (TpDBusDaemon *self, void tp_dbus_daemon_list_names (TpDBusDaemon *self,
gint timeout_ms, TpDBusDaemonListNamesCb callback, gint timeout_ms, TpDBusDaemonListNamesCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object); gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
void tp_dbus_daemon_list_activatable_names (TpDBusDaemon *self, void tp_dbus_daemon_list_activatable_names (TpDBusDaemon *self,
gint timeout_ms, TpDBusDaemonListNamesCb callback, gint timeout_ms, TpDBusDaemonListNamesCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object); gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
void tp_dbus_daemon_register_object (TpDBusDaemon *self,
const gchar *object_path, gpointer object);
void tp_dbus_daemon_unregister_object (TpDBusDaemon *self, gpointer object)
;
G_END_DECLS G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-dbus-daemon.h> #include <telepathy-glib/_gen/tp-cli-dbus-daemon.h>
#endif #endif
 End of changes. 1 change blocks. 
0 lines changed or deleted 5 lines changed or added


 intset.h   intset.h 
/* tp-intset.h - Headers for a Glib-link set of integers /* tp-intset.h - Headers for a Glib-link set of integers
* *
* Copyright (C) 2005, 2006 Collabora Ltd. <http://www.collabora.co.uk/> * Copyright © 2005-2010 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright (C) 2005, 2006 Nokia Corporation * Copyright © 2005-2006 Nokia Corporation
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License * modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of * as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version. * the License, or (at your option) any later version.
* *
* This library is distributed in the hope that it will be useful, but * This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of * WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
skipping to change at line 30 skipping to change at line 30
* *
*/ */
#ifndef __TP_INTSET_H__ #ifndef __TP_INTSET_H__
#define __TP_INTSET_H__ #define __TP_INTSET_H__
#include <glib-object.h> #include <glib-object.h>
G_BEGIN_DECLS G_BEGIN_DECLS
/** #define TP_TYPE_INTSET (tp_intset_get_type ())
* TpIntSet: GType tp_intset_get_type (void);
*
* Opaque type representing a set of unsigned integers.
*/
typedef struct _TpIntSet TpIntSet; typedef struct _TpIntSet TpIntSet;
/**
* TpIntFunc:
* @i: The relevant integer
* @userdata: Opaque user data
*
* A callback function acting on unsigned integers.
*/
typedef void (*TpIntFunc) (guint i, gpointer userdata); typedef void (*TpIntFunc) (guint i, gpointer userdata);
TpIntSet *tp_intset_new (void) G_GNUC_WARN_UNUSED_RESULT; TpIntSet *tp_intset_new (void) G_GNUC_WARN_UNUSED_RESULT;
TpIntSet *tp_intset_sized_new (guint size) G_GNUC_WARN_UNUSED_RESULT; TpIntSet *tp_intset_sized_new (guint size) G_GNUC_WARN_UNUSED_RESULT;
TpIntSet *tp_intset_new_containing (guint element) G_GNUC_WARN_UNUSED_RESUL T; TpIntSet *tp_intset_new_containing (guint element) G_GNUC_WARN_UNUSED_RESUL T;
void tp_intset_destroy (TpIntSet *set); void tp_intset_destroy (TpIntSet *set);
void tp_intset_clear (TpIntSet *set); void tp_intset_clear (TpIntSet *set);
void tp_intset_add (TpIntSet *set, guint element); void tp_intset_add (TpIntSet *set, guint element);
gboolean tp_intset_remove (TpIntSet *set, guint element); gboolean tp_intset_remove (TpIntSet *set, guint element);
skipping to change at line 81 skipping to change at line 72
G_GNUC_WARN_UNUSED_RESULT; G_GNUC_WARN_UNUSED_RESULT;
TpIntSet *tp_intset_difference (const TpIntSet *left, const TpIntSet *right ) TpIntSet *tp_intset_difference (const TpIntSet *left, const TpIntSet *right )
G_GNUC_WARN_UNUSED_RESULT; G_GNUC_WARN_UNUSED_RESULT;
TpIntSet *tp_intset_symmetric_difference (const TpIntSet *left, TpIntSet *tp_intset_symmetric_difference (const TpIntSet *left,
const TpIntSet *right) G_GNUC_WARN_UNUSED_RESULT; const TpIntSet *right) G_GNUC_WARN_UNUSED_RESULT;
gchar *tp_intset_dump (const TpIntSet *set) G_GNUC_WARN_UNUSED_RESULT; gchar *tp_intset_dump (const TpIntSet *set) G_GNUC_WARN_UNUSED_RESULT;
typedef struct _TpIntSetIter TpIntSetIter; typedef struct _TpIntSetIter TpIntSetIter;
/**
* TpIntSetIter:
* @set: The set iterated over.
* @element: Must be (guint)(-1) before iteration starts. Set to the next
* element in the set by tp_intset_iter_next(); undefined after
* tp_intset_iter_next() returns %FALSE.
*
* A structure representing iteration over a set of integers. Must be
* initialized with either TP_INTSET_ITER_INIT() or tp_intset_iter_init().
*/
struct _TpIntSetIter struct _TpIntSetIter
{ {
const TpIntSet *set; const TpIntSet *set;
guint element; guint element;
}; };
/**
* TP_INTSET_ITER_INIT:
* @set: A set of integers
*
* A suitable static initializer for a #TpIntSetIter, to be used as follows
:
*
* <informalexample><programlisting>
* void
* do_something (const TpIntSet *intset)
* {
* TpIntSetIter iter = TP_INTSET_ITER_INIT (intset);
* /<!-- -->* ... do something with iter ... *<!-- -->/
* }
* </programlisting></informalexample>
*/
#define TP_INTSET_ITER_INIT(set) { (set), (guint)(-1) } #define TP_INTSET_ITER_INIT(set) { (set), (guint)(-1) }
/**
* tp_intset_iter_init:
* @iter: An integer set iterator to be initialized.
* @set: An integer set to be used by that iterator
*
* Reset the iterator @iter to the beginning and make it iterate over @set.
*/
#define tp_intset_iter_init(iter, set) tp_intset_iter_init_inline (iter, se t) #define tp_intset_iter_init(iter, set) tp_intset_iter_init_inline (iter, se t)
static inline void static inline void
tp_intset_iter_init_inline (TpIntSetIter *iter, const TpIntSet *set) tp_intset_iter_init_inline (TpIntSetIter *iter, const TpIntSet *set)
{ {
g_return_if_fail (iter != NULL); g_return_if_fail (iter != NULL);
iter->set = set; iter->set = set;
iter->element = (guint)(-1); iter->element = (guint)(-1);
} }
/**
* tp_intset_iter_reset:
* @iter: An integer set iterator to be reset.
*
* Reset the iterator @iter to the beginning. It must already be associated
* with a set.
*/
#define tp_intset_iter_reset(iter) tp_intset_iter_reset_inline (iter) #define tp_intset_iter_reset(iter) tp_intset_iter_reset_inline (iter)
static inline void static inline void
tp_intset_iter_reset_inline (TpIntSetIter *iter) tp_intset_iter_reset_inline (TpIntSetIter *iter)
{ {
g_return_if_fail (iter != NULL); g_return_if_fail (iter != NULL);
g_return_if_fail (iter->set != NULL); g_return_if_fail (iter->set != NULL);
iter->element = (guint)(-1); iter->element = (guint)(-1);
} }
gboolean tp_intset_iter_next (TpIntSetIter *iter); gboolean tp_intset_iter_next (TpIntSetIter *iter);
 End of changes. 7 change blocks. 
54 lines changed or deleted 5 lines changed or added


 proxy.h   proxy.h 
skipping to change at line 26 skipping to change at line 26
* *
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA
*/ */
#ifndef __TP_PROXY_H__ #ifndef __TP_PROXY_H__
#define __TP_PROXY_H__ #define __TP_PROXY_H__
#include <dbus/dbus-glib.h> #include <dbus/dbus-glib.h>
#include <glib-object.h> #include <gio/gio.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
G_BEGIN_DECLS G_BEGIN_DECLS
/* Forward declaration of a subclass - from dbus.h */ /* Forward declaration of a subclass - from dbus.h */
typedef struct _TpDBusDaemon TpDBusDaemon; typedef struct _TpDBusDaemon TpDBusDaemon;
typedef struct _TpProxyPrivate TpProxyPrivate; typedef struct _TpProxyPrivate TpProxyPrivate;
skipping to change at line 73 skipping to change at line 73
gchar *bus_name; gchar *bus_name;
gchar *object_path; gchar *object_path;
GError *invalidated /* initialized to NULL by g_object_new */; GError *invalidated /* initialized to NULL by g_object_new */;
TpProxyPrivate *priv; TpProxyPrivate *priv;
}; };
typedef struct _TpProxyClass TpProxyClass; typedef struct _TpProxyClass TpProxyClass;
/* defined in proxy-internal.h for now */
typedef struct _TpProxyFeature TpProxyFeature;
typedef const TpProxyFeature *(*TpProxyClassFeatureListFunc) (
TpProxyClass *cls);
struct _TpProxyClass { struct _TpProxyClass {
/*<public>*/ /*<public>*/
GObjectClass parent_class; GObjectClass parent_class;
GQuark interface; GQuark interface;
unsigned int must_have_unique_name:1; unsigned int must_have_unique_name:1;
guint _reserved_flags:31; guint _reserved_flags:31;
GCallback _reserved[4]; TpProxyClassFeatureListFunc list_features;
GCallback _reserved[3];
gpointer priv; gpointer priv;
}; };
typedef struct _TpProxyPendingCall TpProxyPendingCall; typedef struct _TpProxyPendingCall TpProxyPendingCall;
void tp_proxy_pending_call_cancel (TpProxyPendingCall *pc); void tp_proxy_pending_call_cancel (TpProxyPendingCall *pc);
typedef struct _TpProxySignalConnection TpProxySignalConnection; typedef struct _TpProxySignalConnection TpProxySignalConnection;
void tp_proxy_signal_connection_disconnect (TpProxySignalConnection *sc); void tp_proxy_signal_connection_disconnect (TpProxySignalConnection *sc);
skipping to change at line 139 skipping to change at line 146
const gchar *tp_proxy_get_bus_name (gpointer self); const gchar *tp_proxy_get_bus_name (gpointer self);
const gchar *tp_proxy_get_object_path (gpointer self); const gchar *tp_proxy_get_object_path (gpointer self);
const GError *tp_proxy_get_invalidated (gpointer self); const GError *tp_proxy_get_invalidated (gpointer self);
void tp_proxy_dbus_error_to_gerror (gpointer self, void tp_proxy_dbus_error_to_gerror (gpointer self,
const char *dbus_error, const char *debug_message, GError **error); const char *dbus_error, const char *debug_message, GError **error);
gboolean tp_proxy_is_prepared (gpointer self, GQuark feature);
void tp_proxy_prepare_async (gpointer self,
const GQuark *features,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean tp_proxy_prepare_finish (gpointer self,
GAsyncResult *result,
GError **error);
void _tp_proxy_set_features_failed (TpProxy *self,
const GError *error);
G_END_DECLS G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-generic.h> #include <telepathy-glib/_gen/tp-cli-generic.h>
#endif /* #ifndef __TP_PROXY_H__*/ #endif /* #ifndef __TP_PROXY_H__*/
 End of changes. 4 change blocks. 
2 lines changed or deleted 20 lines changed or added


 telepathy-enums.h   telepathy-enums.h 
skipping to change at line 57 skipping to change at line 57
/** /**
* NUM_TP_HANDLE_TYPES: * NUM_TP_HANDLE_TYPES:
* *
* 1 higher than the highest valid value of #TpHandleType. * 1 higher than the highest valid value of #TpHandleType.
*/ */
#define NUM_TP_HANDLE_TYPES (4+1) #define NUM_TP_HANDLE_TYPES (4+1)
/** /**
* *
TpConnectionStatus: TpConnectionStatus:
* @TP_CONNECTION_STATUS_CONNECTED: <![CDATA[ The connection is * @TP_CONNECTION_STATUS_CONNECTED: <![CDATA[ The connection is f
alive and all methods are available. ]]> ully connected and all methods are available. ]]>
* @TP_CONNECTION_STATUS_CONNECTING: <![CDATA[ The connection h * @TP_CONNECTION_STATUS_CONNECTING: <![CDATA[ Connect has been c
as not yet been established, or has been severed and reconnecti alled but the connection has not yet been established. Some metho
on is being attempted. Some methods may fail until the connecti ds may fail until the connection has been established. ]]
on has been established. ]]> >
* @TP_CONNECTION_STATUS_DISCONNECTED: <![CDATA[ The connection * @TP_CONNECTION_STATUS_DISCONNECTED: <![CDATA[ If this is retri
has been severed and no method calls are valid. The object may eved from GetStatus or Status, it indicates that connection
be removed from the bus at any time. ]]> has not yet been attempted. If seen in a StatusChanged signa
l, it indicates that the connection has failed; the Connection ob
ject SHOULD be removed from D-Bus immediately, and all subsequent
method calls SHOULD fail. ]]>
* *
* Bitfield/set of flags generated from the Telepathy specification. * Bitfield/set of flags generated from the Telepathy specification.
*/ */
typedef enum { typedef enum {
TP_CONNECTION_STATUS_CONNECTED = 0, TP_CONNECTION_STATUS_CONNECTED = 0,
TP_CONNECTION_STATUS_CONNECTING = 1, TP_CONNECTION_STATUS_CONNECTING = 1,
TP_CONNECTION_STATUS_DISCONNECTED = 2, TP_CONNECTION_STATUS_DISCONNECTED = 2,
} TpConnectionStatus; } TpConnectionStatus;
/** /**
skipping to change at line 148 skipping to change at line 148
* *
* Bitfield/set of flags generated from the Telepathy specification. * Bitfield/set of flags generated from the Telepathy specification.
*/ */
typedef enum { typedef enum {
TP_CONNECTION_CAPABILITY_FLAG_CREATE = 1, TP_CONNECTION_CAPABILITY_FLAG_CREATE = 1,
TP_CONNECTION_CAPABILITY_FLAG_INVITE = 2, TP_CONNECTION_CAPABILITY_FLAG_INVITE = 2,
} TpConnectionCapabilityFlags; } TpConnectionCapabilityFlags;
/** /**
* *
TpContactInfoFlags:
* @TP_CONTACT_INFO_FLAG_CAN_SET: <![CDATA[ Indicates that SetCon
tactInfo is supported on this connection. ]]>
* @TP_CONTACT_INFO_FLAG_PUSH: <![CDATA[ Indicates that the proto
col pushes all contacts' information to the connection manager wi
thout prompting. If set, ContactInfoChanged will be emitted
whenever contacts' information changes. ]]>
*
* <![CDATA[ Flags defining the behaviour of contact information on
this protocol. Some protocols provide no information on contacts w
ithout an explicit request; others always push information to the c
onnection manager as and when it changes. ]]>
*
* Bitfield/set of flags generated from the Telepathy specification.
*/
typedef enum {
TP_CONTACT_INFO_FLAG_CAN_SET = 1,
TP_CONTACT_INFO_FLAG_PUSH = 2,
} TpContactInfoFlags;
/**
*
TpContactInfoFieldFlags:
* @TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT: <![CDATA[ If pre
sent, exactly the parameters indicated must be set on this fiel
d; in the case of an empty list of parameters, this implies that
parameters may not be used. If absent, and the list of allowed
parameters is non-empty, any (possibly empty) subset of that l
ist may be used. If absent, and the list of allowed
parameters is empty, any parameters may be used. ]]>
*
* <![CDATA[ Flags describing the behaviour of a vCard field.
]]>
*
* Bitfield/set of flags generated from the Telepathy specification.
*/
typedef enum {
TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT = 1,
} TpContactInfoFieldFlags;
/**
*
TpConnectionPresenceType: TpConnectionPresenceType:
* @TP_CONNECTION_PRESENCE_TYPE_UNSET: <![CDATA[ An invalid prese nce type used as a null value. This value MUST NOT appear in the Statuses property, or in the result of GetStatuses on t he deprecated Presence interface. ]]> * @TP_CONNECTION_PRESENCE_TYPE_UNSET: <![CDATA[ An invalid prese nce type used as a null value. This value MUST NOT appear in the Statuses property, or in the result of GetStatuses on t he deprecated Presence interface. ]]>
* @TP_CONNECTION_PRESENCE_TYPE_OFFLINE: <![CDATA[ Offline ]]> * @TP_CONNECTION_PRESENCE_TYPE_OFFLINE: <![CDATA[ Offline ]]>
* @TP_CONNECTION_PRESENCE_TYPE_AVAILABLE: <![CDATA[ Available ]]> * @TP_CONNECTION_PRESENCE_TYPE_AVAILABLE: <![CDATA[ Available ]]>
* @TP_CONNECTION_PRESENCE_TYPE_AWAY: <![CDATA[ Away ]]> * @TP_CONNECTION_PRESENCE_TYPE_AWAY: <![CDATA[ Away ]]>
* @TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY: <![CDATA[ Away for an extended time ]]> * @TP_CONNECTION_PRESENCE_TYPE_EXTENDED_AWAY: <![CDATA[ Away for an extended time ]]>
* @TP_CONNECTION_PRESENCE_TYPE_HIDDEN: <![CDATA[ Hidden (invisib le) ]]> * @TP_CONNECTION_PRESENCE_TYPE_HIDDEN: <![CDATA[ Hidden (invisib le) ]]>
* @TP_CONNECTION_PRESENCE_TYPE_BUSY: <![CDATA[ Busy, Do Not Dist urb. ]]> * @TP_CONNECTION_PRESENCE_TYPE_BUSY: <![CDATA[ Busy, Do Not Dist urb. ]]>
* @TP_CONNECTION_PRESENCE_TYPE_UNKNOWN: <![CDATA[ Unknown, unabl e to determine presence for this contact, for example if the prot ocol only allows presence of subscribed contacts. ]]> * @TP_CONNECTION_PRESENCE_TYPE_UNKNOWN: <![CDATA[ Unknown, unabl e to determine presence for this contact, for example if the prot ocol only allows presence of subscribed contacts. ]]>
* @TP_CONNECTION_PRESENCE_TYPE_ERROR: <![CDATA[ Error, an error occurred while trying to determine presence. The message, if set , is an error from the server. ]]> * @TP_CONNECTION_PRESENCE_TYPE_ERROR: <![CDATA[ Error, an error occurred while trying to determine presence. The message, if set , is an error from the server. ]]>
 End of changes. 2 change blocks. 
9 lines changed or deleted 54 lines changed or added


 telepathy-interfaces.h   telepathy-interfaces.h 
skipping to change at line 30 skipping to change at line 30
GQuark tp_iface_quark_connection_manager (void); GQuark tp_iface_quark_connection_manager (void);
/** /**
* TP_PROP_CONNECTION_MANAGER_INTERFACES: * TP_PROP_CONNECTION_MANAGER_INTERFACES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.ConnectionM anager.Interfaces" * The fully-qualified property name "org.freedesktop.Telepathy.ConnectionM anager.Interfaces"
*/ */
#define TP_PROP_CONNECTION_MANAGER_INTERFACES \ #define TP_PROP_CONNECTION_MANAGER_INTERFACES \
"org.freedesktop.Telepathy.ConnectionManager.Interfaces" "org.freedesktop.Telepathy.ConnectionManager.Interfaces"
/** /**
* TP_IFACE_CONNECTION: * TP_IFACE_CONNECTION:
* *
* The interface name "org.freedesktop.Telepathy.Connection" * The interface name "org.freedesktop.Telepathy.Connection"
*/ */
#define TP_IFACE_CONNECTION \ #define TP_IFACE_CONNECTION \
"org.freedesktop.Telepathy.Connection" "org.freedesktop.Telepathy.Connection"
/** /**
* TP_IFACE_QUARK_CONNECTION: * TP_IFACE_QUARK_CONNECTION:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection"
*/ */
#define TP_IFACE_QUARK_CONNECTION \ #define TP_IFACE_QUARK_CONNECTION \
(tp_iface_quark_connection ()) (tp_iface_quark_connection ())
GQuark tp_iface_quark_connection (void); GQuark tp_iface_quark_connection (void);
/** /**
* TP_PROP_CONNECTION_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interfaces"
*/
#define TP_PROP_CONNECTION_INTERFACES \
"org.freedesktop.Telepathy.Connection.Interfaces"
/**
* TP_PROP_CONNECTION_SELF_HANDLE: * TP_PROP_CONNECTION_SELF_HANDLE:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. SelfHandle" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. SelfHandle"
*/ */
#define TP_PROP_CONNECTION_SELF_HANDLE \ #define TP_PROP_CONNECTION_SELF_HANDLE \
"org.freedesktop.Telepathy.Connection.SelfHandle" "org.freedesktop.Telepathy.Connection.SelfHandle"
/**
* TP_PROP_CONNECTION_STATUS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Status"
*/
#define TP_PROP_CONNECTION_STATUS \
"org.freedesktop.Telepathy.Connection.Status"
/**
* TP_TOKEN_CONNECTION_CONTACT_ID:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.contact-id"
*/
#define TP_TOKEN_CONNECTION_CONTACT_ID \
"org.freedesktop.Telepathy.Connection.contact-id"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_ALIASING: * TP_IFACE_CONNECTION_INTERFACE_ALIASING:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Alias ing" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Alias ing"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_ALIASING \ #define TP_IFACE_CONNECTION_INTERFACE_ALIASING \
"org.freedesktop.Telepathy.Connection.Interface.Aliasing" "org.freedesktop.Telepathy.Connection.Interface.Aliasing"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_ALIASING: * TP_IFACE_QUARK_CONNECTION_INTERFACE_ALIASING:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Aliasing" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Aliasing"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_ALIASING \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_ALIASING \
(tp_iface_quark_connection_interface_aliasing ()) (tp_iface_quark_connection_interface_aliasing ())
GQuark tp_iface_quark_connection_interface_aliasing (void); GQuark tp_iface_quark_connection_interface_aliasing (void);
/** /**
* TP_TOKEN_CONNECTION_INTERFACE_ALIASING_ALIAS:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.Aliasing.alias"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_ALIASING_ALIAS \
"org.freedesktop.Telepathy.Connection.Interface.Aliasing.alias"
/**
* TP_IFACE_CONNECTION_INTERFACE_AVATARS: * TP_IFACE_CONNECTION_INTERFACE_AVATARS:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Avata rs" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Avata rs"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_AVATARS \ #define TP_IFACE_CONNECTION_INTERFACE_AVATARS \
"org.freedesktop.Telepathy.Connection.Interface.Avatars" "org.freedesktop.Telepathy.Connection.Interface.Avatars"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS: * TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS:
* *
skipping to change at line 154 skipping to change at line 188
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_WIDTH \ #define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarWidth" "org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarWidth"
/** /**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES: * TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Avatars.MaximumAvatarBytes" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Avatars.MaximumAvatarBytes"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES \ #define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarBytes" "org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarBytes"
/**
* TP_TOKEN_CONNECTION_INTERFACE_AVATARS_TOKEN:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.Avatars.token"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_AVATARS_TOKEN \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.token"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_BALANCE: * TP_IFACE_CONNECTION_INTERFACE_BALANCE:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Balan ce" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Balan ce"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_BALANCE \ #define TP_IFACE_CONNECTION_INTERFACE_BALANCE \
"org.freedesktop.Telepathy.Connection.Interface.Balance" "org.freedesktop.Telepathy.Connection.Interface.Balance"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_BALANCE: * TP_IFACE_QUARK_CONNECTION_INTERFACE_BALANCE:
skipping to change at line 179 skipping to change at line 222
GQuark tp_iface_quark_connection_interface_balance (void); GQuark tp_iface_quark_connection_interface_balance (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_BALANCE_ACCOUNT_BALANCE: * TP_PROP_CONNECTION_INTERFACE_BALANCE_ACCOUNT_BALANCE:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Balance.AccountBalance" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Balance.AccountBalance"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_BALANCE_ACCOUNT_BALANCE \ #define TP_PROP_CONNECTION_INTERFACE_BALANCE_ACCOUNT_BALANCE \
"org.freedesktop.Telepathy.Connection.Interface.Balance.AccountBalance" "org.freedesktop.Telepathy.Connection.Interface.Balance.AccountBalance"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_CAPABILITIES: * TP_IFACE_CONNECTION_INTERFACE_CAPABILITIES:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Capab ilities" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Capab ilities"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_CAPABILITIES \ #define TP_IFACE_CONNECTION_INTERFACE_CAPABILITIES \
"org.freedesktop.Telepathy.Connection.Interface.Capabilities" "org.freedesktop.Telepathy.Connection.Interface.Capabilities"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_CAPABILITIES: * TP_IFACE_QUARK_CONNECTION_INTERFACE_CAPABILITIES:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Capabilities" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Capabilities"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_CAPABILITIES \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_CAPABILITIES \
(tp_iface_quark_connection_interface_capabilities ()) (tp_iface_quark_connection_interface_capabilities ())
GQuark tp_iface_quark_connection_interface_capabilities (void); GQuark tp_iface_quark_connection_interface_capabilities (void);
/** /**
* TP_TOKEN_CONNECTION_INTERFACE_CAPABILITIES_CAPS:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.Capabilities.caps"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_CAPABILITIES_CAPS \
"org.freedesktop.Telepathy.Connection.Interface.Capabilities.caps"
/**
* TP_IFACE_CONNECTION_INTERFACE_CONTACT_CAPABILITIES: * TP_IFACE_CONNECTION_INTERFACE_CONTACT_CAPABILITIES:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Conta ctCapabilities" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Conta ctCapabilities"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_CONTACT_CAPABILITIES \ #define TP_IFACE_CONNECTION_INTERFACE_CONTACT_CAPABILITIES \
"org.freedesktop.Telepathy.Connection.Interface.ContactCapabilities" "org.freedesktop.Telepathy.Connection.Interface.ContactCapabilities"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_CAPABILITIES: * TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_CAPABILITIES:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.ContactCapabilities" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.ContactCapabilities"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_CAPABILITIES \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_CAPABILITIES \
(tp_iface_quark_connection_interface_contact_capabilities ()) (tp_iface_quark_connection_interface_contact_capabilities ())
GQuark tp_iface_quark_connection_interface_contact_capabilities (void); GQuark tp_iface_quark_connection_interface_contact_capabilities (void);
/** /**
* TP_TOKEN_CONNECTION_INTERFACE_CONTACT_CAPABILITIES_CAPABILITIES:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.ContactCapabilities.capabilities"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_CONTACT_CAPABILITIES_CAPABILITIES \
"org.freedesktop.Telepathy.Connection.Interface.ContactCapabilities.capabil
ities"
/**
* TP_IFACE_CONNECTION_INTERFACE_CONTACT_INFO:
*
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Conta
ctInfo"
*/
#define TP_IFACE_CONNECTION_INTERFACE_CONTACT_INFO \
"org.freedesktop.Telepathy.Connection.Interface.ContactInfo"
/**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_INFO:
*
* Expands to a call to a function that returns a quark for the interface n
ame "org.freedesktop.Telepathy.Connection.Interface.ContactInfo"
*/
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_INFO \
(tp_iface_quark_connection_interface_contact_info ())
GQuark tp_iface_quark_connection_interface_contact_info (void);
/**
* TP_PROP_CONNECTION_INTERFACE_CONTACT_INFO_CONTACT_INFO_FLAGS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.ContactInfo.ContactInfoFlags"
*/
#define TP_PROP_CONNECTION_INTERFACE_CONTACT_INFO_CONTACT_INFO_FLAGS \
"org.freedesktop.Telepathy.Connection.Interface.ContactInfo.ContactInfoFlag
s"
/**
* TP_PROP_CONNECTION_INTERFACE_CONTACT_INFO_SUPPORTED_FIELDS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.ContactInfo.SupportedFields"
*/
#define TP_PROP_CONNECTION_INTERFACE_CONTACT_INFO_SUPPORTED_FIELDS \
"org.freedesktop.Telepathy.Connection.Interface.ContactInfo.SupportedFields
"
/**
* TP_IFACE_CONNECTION_INTERFACE_SIMPLE_PRESENCE: * TP_IFACE_CONNECTION_INTERFACE_SIMPLE_PRESENCE:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Simpl ePresence" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Simpl ePresence"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_SIMPLE_PRESENCE \ #define TP_IFACE_CONNECTION_INTERFACE_SIMPLE_PRESENCE \
"org.freedesktop.Telepathy.Connection.Interface.SimplePresence" "org.freedesktop.Telepathy.Connection.Interface.SimplePresence"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE: * TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE:
* *
skipping to change at line 240 skipping to change at line 334
GQuark tp_iface_quark_connection_interface_simple_presence (void); GQuark tp_iface_quark_connection_interface_simple_presence (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_SIMPLE_PRESENCE_STATUSES: * TP_PROP_CONNECTION_INTERFACE_SIMPLE_PRESENCE_STATUSES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.SimplePresence.Statuses" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.SimplePresence.Statuses"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_SIMPLE_PRESENCE_STATUSES \ #define TP_PROP_CONNECTION_INTERFACE_SIMPLE_PRESENCE_STATUSES \
"org.freedesktop.Telepathy.Connection.Interface.SimplePresence.Statuses" "org.freedesktop.Telepathy.Connection.Interface.SimplePresence.Statuses"
/**
* TP_TOKEN_CONNECTION_INTERFACE_SIMPLE_PRESENCE_PRESENCE:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.SimplePresence.presence"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_SIMPLE_PRESENCE_PRESENCE \
"org.freedesktop.Telepathy.Connection.Interface.SimplePresence.presence"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_PRESENCE: * TP_IFACE_CONNECTION_INTERFACE_PRESENCE:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Prese nce" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Prese nce"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_PRESENCE \ #define TP_IFACE_CONNECTION_INTERFACE_PRESENCE \
"org.freedesktop.Telepathy.Connection.Interface.Presence" "org.freedesktop.Telepathy.Connection.Interface.Presence"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_PRESENCE: * TP_IFACE_QUARK_CONNECTION_INTERFACE_PRESENCE:
skipping to change at line 283 skipping to change at line 386
GQuark tp_iface_quark_connection_interface_contacts (void); GQuark tp_iface_quark_connection_interface_contacts (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES: * TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Contacts.ContactAttributeInterfaces" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Contacts.ContactAttributeInterfaces"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES \ #define TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES \
"org.freedesktop.Telepathy.Connection.Interface.Contacts.ContactAttributeIn terfaces" "org.freedesktop.Telepathy.Connection.Interface.Contacts.ContactAttributeIn terfaces"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_REQUESTS: * TP_IFACE_CONNECTION_INTERFACE_REQUESTS:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Reque sts" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Reque sts"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_REQUESTS \ #define TP_IFACE_CONNECTION_INTERFACE_REQUESTS \
"org.freedesktop.Telepathy.Connection.Interface.Requests" "org.freedesktop.Telepathy.Connection.Interface.Requests"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_REQUESTS: * TP_IFACE_QUARK_CONNECTION_INTERFACE_REQUESTS:
skipping to change at line 316 skipping to change at line 420
#define TP_PROP_CONNECTION_INTERFACE_REQUESTS_CHANNELS \ #define TP_PROP_CONNECTION_INTERFACE_REQUESTS_CHANNELS \
"org.freedesktop.Telepathy.Connection.Interface.Requests.Channels" "org.freedesktop.Telepathy.Connection.Interface.Requests.Channels"
/** /**
* TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_CLASSES: * TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_CLASSES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Requests.RequestableChannelClasses" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Requests.RequestableChannelClasses"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_CLASSES \ #define TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_CLASSES \
"org.freedesktop.Telepathy.Connection.Interface.Requests.RequestableChannel Classes" "org.freedesktop.Telepathy.Connection.Interface.Requests.RequestableChannel Classes"
/** /**
* TP_IFACE_CONNECTION_INTERFACE_LOCATION: * TP_IFACE_CONNECTION_INTERFACE_LOCATION:
* *
* The interface name "org.freedesktop.Telepathy.Connection.Interface.Locat ion" * The interface name "org.freedesktop.Telepathy.Connection.Interface.Locat ion"
*/ */
#define TP_IFACE_CONNECTION_INTERFACE_LOCATION \ #define TP_IFACE_CONNECTION_INTERFACE_LOCATION \
"org.freedesktop.Telepathy.Connection.Interface.Location" "org.freedesktop.Telepathy.Connection.Interface.Location"
/** /**
* TP_IFACE_QUARK_CONNECTION_INTERFACE_LOCATION: * TP_IFACE_QUARK_CONNECTION_INTERFACE_LOCATION:
skipping to change at line 349 skipping to change at line 454
#define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL_TYPES \ #define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL_TYPES \
"org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont rolTypes" "org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont rolTypes"
/** /**
* TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL: * TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Location.LocationAccessControl" * The fully-qualified property name "org.freedesktop.Telepathy.Connection. Interface.Location.LocationAccessControl"
*/ */
#define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL \ #define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL \
"org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont rol" "org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont rol"
/**
* TP_TOKEN_CONNECTION_INTERFACE_LOCATION_LOCATION:
*
* The fully-qualified contact attribute token name "org.freedesktop.Telepa
thy.Connection.Interface.Location.location"
*/
#define TP_TOKEN_CONNECTION_INTERFACE_LOCATION_LOCATION \
"org.freedesktop.Telepathy.Connection.Interface.Location.location"
/** /**
* TP_IFACE_CHANNEL: * TP_IFACE_CHANNEL:
* *
* The interface name "org.freedesktop.Telepathy.Channel" * The interface name "org.freedesktop.Telepathy.Channel"
*/ */
#define TP_IFACE_CHANNEL \ #define TP_IFACE_CHANNEL \
"org.freedesktop.Telepathy.Channel" "org.freedesktop.Telepathy.Channel"
/** /**
* TP_IFACE_QUARK_CHANNEL: * TP_IFACE_QUARK_CHANNEL:
skipping to change at line 430 skipping to change at line 544
#define TP_PROP_CHANNEL_INITIATOR_HANDLE \ #define TP_PROP_CHANNEL_INITIATOR_HANDLE \
"org.freedesktop.Telepathy.Channel.InitiatorHandle" "org.freedesktop.Telepathy.Channel.InitiatorHandle"
/** /**
* TP_PROP_CHANNEL_INITIATOR_ID: * TP_PROP_CHANNEL_INITIATOR_ID:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Ini tiatorID" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Ini tiatorID"
*/ */
#define TP_PROP_CHANNEL_INITIATOR_ID \ #define TP_PROP_CHANNEL_INITIATOR_ID \
"org.freedesktop.Telepathy.Channel.InitiatorID" "org.freedesktop.Telepathy.Channel.InitiatorID"
/** /**
* TP_IFACE_CHANNEL_TYPE_CONTACT_LIST: * TP_IFACE_CHANNEL_TYPE_CONTACT_LIST:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Type.ContactList" * The interface name "org.freedesktop.Telepathy.Channel.Type.ContactList"
*/ */
#define TP_IFACE_CHANNEL_TYPE_CONTACT_LIST \ #define TP_IFACE_CHANNEL_TYPE_CONTACT_LIST \
"org.freedesktop.Telepathy.Channel.Type.ContactList" "org.freedesktop.Telepathy.Channel.Type.ContactList"
/** /**
* TP_IFACE_QUARK_CHANNEL_TYPE_CONTACT_LIST: * TP_IFACE_QUARK_CHANNEL_TYPE_CONTACT_LIST:
skipping to change at line 553 skipping to change at line 668
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_TRANSFERRED_BYTES \ #define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_TRANSFERRED_BYTES \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.TransferredBytes" "org.freedesktop.Telepathy.Channel.Type.FileTransfer.TransferredBytes"
/** /**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET: * TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.FileTransfer.InitialOffset" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.FileTransfer.InitialOffset"
*/ */
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET \ #define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.InitialOffset" "org.freedesktop.Telepathy.Channel.Type.FileTransfer.InitialOffset"
/** /**
* TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA: * TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Type.StreamedMedia " * The interface name "org.freedesktop.Telepathy.Channel.Type.StreamedMedia "
*/ */
#define TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA \ #define TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA \
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia" "org.freedesktop.Telepathy.Channel.Type.StreamedMedia"
/** /**
* TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA: * TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA:
skipping to change at line 594 skipping to change at line 710
#define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO \ #define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO \
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia.InitialVideo" "org.freedesktop.Telepathy.Channel.Type.StreamedMedia.InitialVideo"
/** /**
* TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS: * TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.StreamedMedia.ImmutableStreams" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.StreamedMedia.ImmutableStreams"
*/ */
#define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS \ #define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS \
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia.ImmutableStreams" "org.freedesktop.Telepathy.Channel.Type.StreamedMedia.ImmutableStreams"
/** /**
* TP_IFACE_CHANNEL_TYPE_ROOM_LIST: * TP_IFACE_CHANNEL_TYPE_ROOM_LIST:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Type.RoomList" * The interface name "org.freedesktop.Telepathy.Channel.Type.RoomList"
*/ */
#define TP_IFACE_CHANNEL_TYPE_ROOM_LIST \ #define TP_IFACE_CHANNEL_TYPE_ROOM_LIST \
"org.freedesktop.Telepathy.Channel.Type.RoomList" "org.freedesktop.Telepathy.Channel.Type.RoomList"
/** /**
* TP_IFACE_QUARK_CHANNEL_TYPE_ROOM_LIST: * TP_IFACE_QUARK_CHANNEL_TYPE_ROOM_LIST:
skipping to change at line 619 skipping to change at line 736
GQuark tp_iface_quark_channel_type_room_list (void); GQuark tp_iface_quark_channel_type_room_list (void);
/** /**
* TP_PROP_CHANNEL_TYPE_ROOM_LIST_SERVER: * TP_PROP_CHANNEL_TYPE_ROOM_LIST_SERVER:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.RoomList.Server" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.RoomList.Server"
*/ */
#define TP_PROP_CHANNEL_TYPE_ROOM_LIST_SERVER \ #define TP_PROP_CHANNEL_TYPE_ROOM_LIST_SERVER \
"org.freedesktop.Telepathy.Channel.Type.RoomList.Server" "org.freedesktop.Telepathy.Channel.Type.RoomList.Server"
/** /**
* TP_IFACE_CHANNEL_TYPE_TEXT: * TP_IFACE_CHANNEL_TYPE_TEXT:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Type.Text" * The interface name "org.freedesktop.Telepathy.Channel.Type.Text"
*/ */
#define TP_IFACE_CHANNEL_TYPE_TEXT \ #define TP_IFACE_CHANNEL_TYPE_TEXT \
"org.freedesktop.Telepathy.Channel.Type.Text" "org.freedesktop.Telepathy.Channel.Type.Text"
/** /**
* TP_IFACE_QUARK_CHANNEL_TYPE_TEXT: * TP_IFACE_QUARK_CHANNEL_TYPE_TEXT:
skipping to change at line 688 skipping to change at line 806
#define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE \ #define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE \
"org.freedesktop.Telepathy.Channel.Type.StreamTube.Service" "org.freedesktop.Telepathy.Channel.Type.StreamTube.Service"
/** /**
* TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES: * TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.StreamTube.SupportedSocketTypes" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.StreamTube.SupportedSocketTypes"
*/ */
#define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES \ #define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES \
"org.freedesktop.Telepathy.Channel.Type.StreamTube.SupportedSocketTypes" "org.freedesktop.Telepathy.Channel.Type.StreamTube.SupportedSocketTypes"
/** /**
* TP_IFACE_CHANNEL_TYPE_DBUS_TUBE: * TP_IFACE_CHANNEL_TYPE_DBUS_TUBE:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Type.DBusTube" * The interface name "org.freedesktop.Telepathy.Channel.Type.DBusTube"
*/ */
#define TP_IFACE_CHANNEL_TYPE_DBUS_TUBE \ #define TP_IFACE_CHANNEL_TYPE_DBUS_TUBE \
"org.freedesktop.Telepathy.Channel.Type.DBusTube" "org.freedesktop.Telepathy.Channel.Type.DBusTube"
/** /**
* TP_IFACE_QUARK_CHANNEL_TYPE_DBUS_TUBE: * TP_IFACE_QUARK_CHANNEL_TYPE_DBUS_TUBE:
skipping to change at line 729 skipping to change at line 848
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_DBUS_NAMES \ #define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_DBUS_NAMES \
"org.freedesktop.Telepathy.Channel.Type.DBusTube.DBusNames" "org.freedesktop.Telepathy.Channel.Type.DBusTube.DBusNames"
/** /**
* TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS: * TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.DBusTube.SupportedAccessControls" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ e.DBusTube.SupportedAccessControls"
*/ */
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS \ #define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS \
"org.freedesktop.Telepathy.Channel.Type.DBusTube.SupportedAccessControls" "org.freedesktop.Telepathy.Channel.Type.DBusTube.SupportedAccessControls"
/** /**
* TP_IFACE_CHANNEL_INTERFACE_CALL_STATE: * TP_IFACE_CHANNEL_INTERFACE_CALL_STATE:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Interface.CallStat e" * The interface name "org.freedesktop.Telepathy.Channel.Interface.CallStat e"
*/ */
#define TP_IFACE_CHANNEL_INTERFACE_CALL_STATE \ #define TP_IFACE_CHANNEL_INTERFACE_CALL_STATE \
"org.freedesktop.Telepathy.Channel.Interface.CallState" "org.freedesktop.Telepathy.Channel.Interface.CallState"
/** /**
* TP_IFACE_QUARK_CHANNEL_INTERFACE_CALL_STATE: * TP_IFACE_QUARK_CHANNEL_INTERFACE_CALL_STATE:
skipping to change at line 866 skipping to change at line 986
#define TP_PROP_CHANNEL_INTERFACE_GROUP_REMOTE_PENDING_MEMBERS \ #define TP_PROP_CHANNEL_INTERFACE_GROUP_REMOTE_PENDING_MEMBERS \
"org.freedesktop.Telepathy.Channel.Interface.Group.RemotePendingMembers" "org.freedesktop.Telepathy.Channel.Interface.Group.RemotePendingMembers"
/** /**
* TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE: * TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Group.SelfHandle" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Group.SelfHandle"
*/ */
#define TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE \ #define TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE \
"org.freedesktop.Telepathy.Channel.Interface.Group.SelfHandle" "org.freedesktop.Telepathy.Channel.Interface.Group.SelfHandle"
/** /**
* TP_IFACE_CHANNEL_INTERFACE_HOLD: * TP_IFACE_CHANNEL_INTERFACE_HOLD:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Interface.Hold" * The interface name "org.freedesktop.Telepathy.Channel.Interface.Hold"
*/ */
#define TP_IFACE_CHANNEL_INTERFACE_HOLD \ #define TP_IFACE_CHANNEL_INTERFACE_HOLD \
"org.freedesktop.Telepathy.Channel.Interface.Hold" "org.freedesktop.Telepathy.Channel.Interface.Hold"
/** /**
* TP_IFACE_QUARK_CHANNEL_INTERFACE_HOLD: * TP_IFACE_QUARK_CHANNEL_INTERFACE_HOLD:
skipping to change at line 903 skipping to change at line 1024
* TP_IFACE_QUARK_CHANNEL_INTERFACE_MEDIA_SIGNALLING: * TP_IFACE_QUARK_CHANNEL_INTERFACE_MEDIA_SIGNALLING:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.MediaSignalling"
*/ */
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_MEDIA_SIGNALLING \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_MEDIA_SIGNALLING \
(tp_iface_quark_channel_interface_media_signalling ()) (tp_iface_quark_channel_interface_media_signalling ())
GQuark tp_iface_quark_channel_interface_media_signalling (void); GQuark tp_iface_quark_channel_interface_media_signalling (void);
/** /**
* TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_GTALK_P2P:
*
* The fully-qualified capability token name "org.freedesktop.Telepathy.Cha
nnel.Interface.MediaSignalling.gtalk-p2p"
*/
#define TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_GTALK_P2P \
"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling.gtalk-p2p"
/**
* TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_ICE_UDP:
*
* The fully-qualified capability token name "org.freedesktop.Telepathy.Cha
nnel.Interface.MediaSignalling.ice-udp"
*/
#define TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_ICE_UDP \
"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling.ice-udp"
/**
* TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_WLM_8_5:
*
* The fully-qualified capability token name "org.freedesktop.Telepathy.Cha
nnel.Interface.MediaSignalling.wlm-8.5"
*/
#define TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_WLM_8_5 \
"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling.wlm-8.5"
/**
* TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_WLM_2009:
*
* The fully-qualified capability token name "org.freedesktop.Telepathy.Cha
nnel.Interface.MediaSignalling.wlm-2009"
*/
#define TP_TOKEN_CHANNEL_INTERFACE_MEDIA_SIGNALLING_WLM_2009 \
"org.freedesktop.Telepathy.Channel.Interface.MediaSignalling.wlm-2009"
/**
* TP_IFACE_CHANNEL_INTERFACE_MESSAGES: * TP_IFACE_CHANNEL_INTERFACE_MESSAGES:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Interface.Messages " * The interface name "org.freedesktop.Telepathy.Channel.Interface.Messages "
*/ */
#define TP_IFACE_CHANNEL_INTERFACE_MESSAGES \ #define TP_IFACE_CHANNEL_INTERFACE_MESSAGES \
"org.freedesktop.Telepathy.Channel.Interface.Messages" "org.freedesktop.Telepathy.Channel.Interface.Messages"
/** /**
* TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES: * TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES:
* *
skipping to change at line 951 skipping to change at line 1104
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_PENDING_MESSAGES \ #define TP_PROP_CHANNEL_INTERFACE_MESSAGES_PENDING_MESSAGES \
"org.freedesktop.Telepathy.Channel.Interface.Messages.PendingMessages" "org.freedesktop.Telepathy.Channel.Interface.Messages.PendingMessages"
/** /**
* TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT: * TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Messages.DeliveryReportingSupport" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Messages.DeliveryReportingSupport"
*/ */
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT \ #define TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT \
"org.freedesktop.Telepathy.Channel.Interface.Messages.DeliveryReportingSupp ort" "org.freedesktop.Telepathy.Channel.Interface.Messages.DeliveryReportingSupp ort"
/** /**
* TP_IFACE_CHANNEL_INTERFACE_PASSWORD: * TP_IFACE_CHANNEL_INTERFACE_PASSWORD:
* *
* The interface name "org.freedesktop.Telepathy.Channel.Interface.Password " * The interface name "org.freedesktop.Telepathy.Channel.Interface.Password "
*/ */
#define TP_IFACE_CHANNEL_INTERFACE_PASSWORD \ #define TP_IFACE_CHANNEL_INTERFACE_PASSWORD \
"org.freedesktop.Telepathy.Channel.Interface.Password" "org.freedesktop.Telepathy.Channel.Interface.Password"
/** /**
* TP_IFACE_QUARK_CHANNEL_INTERFACE_PASSWORD: * TP_IFACE_QUARK_CHANNEL_INTERFACE_PASSWORD:
skipping to change at line 1002 skipping to change at line 1156
#define TP_PROP_CHANNEL_INTERFACE_TUBE_PARAMETERS \ #define TP_PROP_CHANNEL_INTERFACE_TUBE_PARAMETERS \
"org.freedesktop.Telepathy.Channel.Interface.Tube.Parameters" "org.freedesktop.Telepathy.Channel.Interface.Tube.Parameters"
/** /**
* TP_PROP_CHANNEL_INTERFACE_TUBE_STATE: * TP_PROP_CHANNEL_INTERFACE_TUBE_STATE:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Tube.State" * The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int erface.Tube.State"
*/ */
#define TP_PROP_CHANNEL_INTERFACE_TUBE_STATE \ #define TP_PROP_CHANNEL_INTERFACE_TUBE_STATE \
"org.freedesktop.Telepathy.Channel.Interface.Tube.State" "org.freedesktop.Telepathy.Channel.Interface.Tube.State"
/** /**
* TP_IFACE_MEDIA_SESSION_HANDLER: * TP_IFACE_MEDIA_SESSION_HANDLER:
* *
* The interface name "org.freedesktop.Telepathy.Media.SessionHandler" * The interface name "org.freedesktop.Telepathy.Media.SessionHandler"
*/ */
#define TP_IFACE_MEDIA_SESSION_HANDLER \ #define TP_IFACE_MEDIA_SESSION_HANDLER \
"org.freedesktop.Telepathy.Media.SessionHandler" "org.freedesktop.Telepathy.Media.SessionHandler"
/** /**
* TP_IFACE_QUARK_MEDIA_SESSION_HANDLER: * TP_IFACE_QUARK_MEDIA_SESSION_HANDLER:
skipping to change at line 1069 skipping to change at line 1224
#define TP_PROP_MEDIA_STREAM_HANDLER_NAT_TRAVERSAL \ #define TP_PROP_MEDIA_STREAM_HANDLER_NAT_TRAVERSAL \
"org.freedesktop.Telepathy.Media.StreamHandler.NATTraversal" "org.freedesktop.Telepathy.Media.StreamHandler.NATTraversal"
/** /**
* TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO: * TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea mHandler.RelayInfo" * The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea mHandler.RelayInfo"
*/ */
#define TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO \ #define TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO \
"org.freedesktop.Telepathy.Media.StreamHandler.RelayInfo" "org.freedesktop.Telepathy.Media.StreamHandler.RelayInfo"
/** /**
* TP_IFACE_DBUS_PEER: * TP_IFACE_DBUS_PEER:
* *
* The interface name "org.freedesktop.DBus.Peer" * The interface name "org.freedesktop.DBus.Peer"
*/ */
#define TP_IFACE_DBUS_PEER \ #define TP_IFACE_DBUS_PEER \
"org.freedesktop.DBus.Peer" "org.freedesktop.DBus.Peer"
/** /**
* TP_IFACE_QUARK_DBUS_PEER: * TP_IFACE_QUARK_DBUS_PEER:
skipping to change at line 1208 skipping to change at line 1364
#define TP_PROP_ACCOUNT_MANAGER_INVALID_ACCOUNTS \ #define TP_PROP_ACCOUNT_MANAGER_INVALID_ACCOUNTS \
"org.freedesktop.Telepathy.AccountManager.InvalidAccounts" "org.freedesktop.Telepathy.AccountManager.InvalidAccounts"
/** /**
* TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES: * TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.AccountMana ger.SupportedAccountProperties" * The fully-qualified property name "org.freedesktop.Telepathy.AccountMana ger.SupportedAccountProperties"
*/ */
#define TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES \ #define TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES \
"org.freedesktop.Telepathy.AccountManager.SupportedAccountProperties" "org.freedesktop.Telepathy.AccountManager.SupportedAccountProperties"
/** /**
* TP_IFACE_ACCOUNT: * TP_IFACE_ACCOUNT:
* *
* The interface name "org.freedesktop.Telepathy.Account" * The interface name "org.freedesktop.Telepathy.Account"
*/ */
#define TP_IFACE_ACCOUNT \ #define TP_IFACE_ACCOUNT \
"org.freedesktop.Telepathy.Account" "org.freedesktop.Telepathy.Account"
/** /**
* TP_IFACE_QUARK_ACCOUNT: * TP_IFACE_QUARK_ACCOUNT:
skipping to change at line 1353 skipping to change at line 1510
#define TP_PROP_ACCOUNT_NORMALIZED_NAME \ #define TP_PROP_ACCOUNT_NORMALIZED_NAME \
"org.freedesktop.Telepathy.Account.NormalizedName" "org.freedesktop.Telepathy.Account.NormalizedName"
/** /**
* TP_PROP_ACCOUNT_HAS_BEEN_ONLINE: * TP_PROP_ACCOUNT_HAS_BEEN_ONLINE:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Has BeenOnline" * The fully-qualified property name "org.freedesktop.Telepathy.Account.Has BeenOnline"
*/ */
#define TP_PROP_ACCOUNT_HAS_BEEN_ONLINE \ #define TP_PROP_ACCOUNT_HAS_BEEN_ONLINE \
"org.freedesktop.Telepathy.Account.HasBeenOnline" "org.freedesktop.Telepathy.Account.HasBeenOnline"
/** /**
* TP_IFACE_ACCOUNT_INTERFACE_AVATAR: * TP_IFACE_ACCOUNT_INTERFACE_AVATAR:
* *
* The interface name "org.freedesktop.Telepathy.Account.Interface.Avatar" * The interface name "org.freedesktop.Telepathy.Account.Interface.Avatar"
*/ */
#define TP_IFACE_ACCOUNT_INTERFACE_AVATAR \ #define TP_IFACE_ACCOUNT_INTERFACE_AVATAR \
"org.freedesktop.Telepathy.Account.Interface.Avatar" "org.freedesktop.Telepathy.Account.Interface.Avatar"
/** /**
* TP_IFACE_QUARK_ACCOUNT_INTERFACE_AVATAR: * TP_IFACE_QUARK_ACCOUNT_INTERFACE_AVATAR:
skipping to change at line 1378 skipping to change at line 1536
GQuark tp_iface_quark_account_interface_avatar (void); GQuark tp_iface_quark_account_interface_avatar (void);
/** /**
* TP_PROP_ACCOUNT_INTERFACE_AVATAR_AVATAR: * TP_PROP_ACCOUNT_INTERFACE_AVATAR_AVATAR:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Int erface.Avatar.Avatar" * The fully-qualified property name "org.freedesktop.Telepathy.Account.Int erface.Avatar.Avatar"
*/ */
#define TP_PROP_ACCOUNT_INTERFACE_AVATAR_AVATAR \ #define TP_PROP_ACCOUNT_INTERFACE_AVATAR_AVATAR \
"org.freedesktop.Telepathy.Account.Interface.Avatar.Avatar" "org.freedesktop.Telepathy.Account.Interface.Avatar.Avatar"
/** /**
* TP_IFACE_CHANNEL_DISPATCHER: * TP_IFACE_CHANNEL_DISPATCHER:
* *
* The interface name "org.freedesktop.Telepathy.ChannelDispatcher" * The interface name "org.freedesktop.Telepathy.ChannelDispatcher"
*/ */
#define TP_IFACE_CHANNEL_DISPATCHER \ #define TP_IFACE_CHANNEL_DISPATCHER \
"org.freedesktop.Telepathy.ChannelDispatcher" "org.freedesktop.Telepathy.ChannelDispatcher"
/** /**
* TP_IFACE_QUARK_CHANNEL_DISPATCHER: * TP_IFACE_QUARK_CHANNEL_DISPATCHER:
skipping to change at line 1403 skipping to change at line 1562
GQuark tp_iface_quark_channel_dispatcher (void); GQuark tp_iface_quark_channel_dispatcher (void);
/** /**
* TP_PROP_CHANNEL_DISPATCHER_INTERFACES: * TP_PROP_CHANNEL_DISPATCHER_INTERFACES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atcher.Interfaces" * The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atcher.Interfaces"
*/ */
#define TP_PROP_CHANNEL_DISPATCHER_INTERFACES \ #define TP_PROP_CHANNEL_DISPATCHER_INTERFACES \
"org.freedesktop.Telepathy.ChannelDispatcher.Interfaces" "org.freedesktop.Telepathy.ChannelDispatcher.Interfaces"
/** /**
* TP_IFACE_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST: * TP_IFACE_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST:
* *
* The interface name "org.freedesktop.Telepathy.ChannelDispatcher.Interfac e.OperationList" * The interface name "org.freedesktop.Telepathy.ChannelDispatcher.Interfac e.OperationList"
*/ */
#define TP_IFACE_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \ #define TP_IFACE_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \
"org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList" "org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList"
/** /**
* TP_IFACE_QUARK_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST: * TP_IFACE_QUARK_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST:
skipping to change at line 1428 skipping to change at line 1588
GQuark tp_iface_quark_channel_dispatcher_interface_operation_list (void); GQuark tp_iface_quark_channel_dispatcher_interface_operation_list (void);
/** /**
* TP_PROP_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST_DISPATCH_OPERATIONS: * TP_PROP_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST_DISPATCH_OPERATIONS:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atcher.Interface.OperationList.DispatchOperations" * The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atcher.Interface.OperationList.DispatchOperations"
*/ */
#define TP_PROP_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST_DISPATCH_OPERAT IONS \ #define TP_PROP_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST_DISPATCH_OPERAT IONS \
"org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList.Dispat chOperations" "org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList.Dispat chOperations"
/** /**
* TP_IFACE_CHANNEL_DISPATCH_OPERATION: * TP_IFACE_CHANNEL_DISPATCH_OPERATION:
* *
* The interface name "org.freedesktop.Telepathy.ChannelDispatchOperation" * The interface name "org.freedesktop.Telepathy.ChannelDispatchOperation"
*/ */
#define TP_IFACE_CHANNEL_DISPATCH_OPERATION \ #define TP_IFACE_CHANNEL_DISPATCH_OPERATION \
"org.freedesktop.Telepathy.ChannelDispatchOperation" "org.freedesktop.Telepathy.ChannelDispatchOperation"
/** /**
* TP_IFACE_QUARK_CHANNEL_DISPATCH_OPERATION: * TP_IFACE_QUARK_CHANNEL_DISPATCH_OPERATION:
skipping to change at line 1485 skipping to change at line 1646
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_CHANNELS \ #define TP_PROP_CHANNEL_DISPATCH_OPERATION_CHANNELS \
"org.freedesktop.Telepathy.ChannelDispatchOperation.Channels" "org.freedesktop.Telepathy.ChannelDispatchOperation.Channels"
/** /**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS: * TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atchOperation.PossibleHandlers" * The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp atchOperation.PossibleHandlers"
*/ */
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS \ #define TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS \
"org.freedesktop.Telepathy.ChannelDispatchOperation.PossibleHandlers" "org.freedesktop.Telepathy.ChannelDispatchOperation.PossibleHandlers"
/** /**
* TP_IFACE_CHANNEL_REQUEST: * TP_IFACE_CHANNEL_REQUEST:
* *
* The interface name "org.freedesktop.Telepathy.ChannelRequest" * The interface name "org.freedesktop.Telepathy.ChannelRequest"
*/ */
#define TP_IFACE_CHANNEL_REQUEST \ #define TP_IFACE_CHANNEL_REQUEST \
"org.freedesktop.Telepathy.ChannelRequest" "org.freedesktop.Telepathy.ChannelRequest"
/** /**
* TP_IFACE_QUARK_CHANNEL_REQUEST: * TP_IFACE_QUARK_CHANNEL_REQUEST:
skipping to change at line 1542 skipping to change at line 1704
#define TP_PROP_CHANNEL_REQUEST_REQUESTS \ #define TP_PROP_CHANNEL_REQUEST_REQUESTS \
"org.freedesktop.Telepathy.ChannelRequest.Requests" "org.freedesktop.Telepathy.ChannelRequest.Requests"
/** /**
* TP_PROP_CHANNEL_REQUEST_INTERFACES: * TP_PROP_CHANNEL_REQUEST_INTERFACES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ est.Interfaces" * The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ est.Interfaces"
*/ */
#define TP_PROP_CHANNEL_REQUEST_INTERFACES \ #define TP_PROP_CHANNEL_REQUEST_INTERFACES \
"org.freedesktop.Telepathy.ChannelRequest.Interfaces" "org.freedesktop.Telepathy.ChannelRequest.Interfaces"
/** /**
* TP_IFACE_CLIENT: * TP_IFACE_CLIENT:
* *
* The interface name "org.freedesktop.Telepathy.Client" * The interface name "org.freedesktop.Telepathy.Client"
*/ */
#define TP_IFACE_CLIENT \ #define TP_IFACE_CLIENT \
"org.freedesktop.Telepathy.Client" "org.freedesktop.Telepathy.Client"
/** /**
* TP_IFACE_QUARK_CLIENT: * TP_IFACE_QUARK_CLIENT:
skipping to change at line 1567 skipping to change at line 1730
GQuark tp_iface_quark_client (void); GQuark tp_iface_quark_client (void);
/** /**
* TP_PROP_CLIENT_INTERFACES: * TP_PROP_CLIENT_INTERFACES:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Inte rfaces" * The fully-qualified property name "org.freedesktop.Telepathy.Client.Inte rfaces"
*/ */
#define TP_PROP_CLIENT_INTERFACES \ #define TP_PROP_CLIENT_INTERFACES \
"org.freedesktop.Telepathy.Client.Interfaces" "org.freedesktop.Telepathy.Client.Interfaces"
/** /**
* TP_IFACE_CLIENT_OBSERVER: * TP_IFACE_CLIENT_OBSERVER:
* *
* The interface name "org.freedesktop.Telepathy.Client.Observer" * The interface name "org.freedesktop.Telepathy.Client.Observer"
*/ */
#define TP_IFACE_CLIENT_OBSERVER \ #define TP_IFACE_CLIENT_OBSERVER \
"org.freedesktop.Telepathy.Client.Observer" "org.freedesktop.Telepathy.Client.Observer"
/** /**
* TP_IFACE_QUARK_CLIENT_OBSERVER: * TP_IFACE_QUARK_CLIENT_OBSERVER:
skipping to change at line 1592 skipping to change at line 1756
GQuark tp_iface_quark_client_observer (void); GQuark tp_iface_quark_client_observer (void);
/** /**
* TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER: * TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Obse rver.ObserverChannelFilter" * The fully-qualified property name "org.freedesktop.Telepathy.Client.Obse rver.ObserverChannelFilter"
*/ */
#define TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER \ #define TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER \
"org.freedesktop.Telepathy.Client.Observer.ObserverChannelFilter" "org.freedesktop.Telepathy.Client.Observer.ObserverChannelFilter"
/**
* TP_PROP_CLIENT_OBSERVER_RECOVER:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Obse
rver.Recover"
*/
#define TP_PROP_CLIENT_OBSERVER_RECOVER \
"org.freedesktop.Telepathy.Client.Observer.Recover"
/** /**
* TP_IFACE_CLIENT_APPROVER: * TP_IFACE_CLIENT_APPROVER:
* *
* The interface name "org.freedesktop.Telepathy.Client.Approver" * The interface name "org.freedesktop.Telepathy.Client.Approver"
*/ */
#define TP_IFACE_CLIENT_APPROVER \ #define TP_IFACE_CLIENT_APPROVER \
"org.freedesktop.Telepathy.Client.Approver" "org.freedesktop.Telepathy.Client.Approver"
/** /**
* TP_IFACE_QUARK_CLIENT_APPROVER: * TP_IFACE_QUARK_CLIENT_APPROVER:
skipping to change at line 1617 skipping to change at line 1790
GQuark tp_iface_quark_client_approver (void); GQuark tp_iface_quark_client_approver (void);
/** /**
* TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER: * TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Appr over.ApproverChannelFilter" * The fully-qualified property name "org.freedesktop.Telepathy.Client.Appr over.ApproverChannelFilter"
*/ */
#define TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER \ #define TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER \
"org.freedesktop.Telepathy.Client.Approver.ApproverChannelFilter" "org.freedesktop.Telepathy.Client.Approver.ApproverChannelFilter"
/** /**
* TP_IFACE_CLIENT_HANDLER: * TP_IFACE_CLIENT_HANDLER:
* *
* The interface name "org.freedesktop.Telepathy.Client.Handler" * The interface name "org.freedesktop.Telepathy.Client.Handler"
*/ */
#define TP_IFACE_CLIENT_HANDLER \ #define TP_IFACE_CLIENT_HANDLER \
"org.freedesktop.Telepathy.Client.Handler" "org.freedesktop.Telepathy.Client.Handler"
/** /**
* TP_IFACE_QUARK_CLIENT_HANDLER: * TP_IFACE_QUARK_CLIENT_HANDLER:
skipping to change at line 1666 skipping to change at line 1840
#define TP_PROP_CLIENT_HANDLER_CAPABILITIES \ #define TP_PROP_CLIENT_HANDLER_CAPABILITIES \
"org.freedesktop.Telepathy.Client.Handler.Capabilities" "org.freedesktop.Telepathy.Client.Handler.Capabilities"
/** /**
* TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS: * TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS:
* *
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand ler.HandledChannels" * The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand ler.HandledChannels"
*/ */
#define TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS \ #define TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS \
"org.freedesktop.Telepathy.Client.Handler.HandledChannels" "org.freedesktop.Telepathy.Client.Handler.HandledChannels"
/** /**
* TP_IFACE_CLIENT_INTERFACE_REQUESTS: * TP_IFACE_CLIENT_INTERFACE_REQUESTS:
* *
* The interface name "org.freedesktop.Telepathy.Client.Interface.Requests" * The interface name "org.freedesktop.Telepathy.Client.Interface.Requests"
*/ */
#define TP_IFACE_CLIENT_INTERFACE_REQUESTS \ #define TP_IFACE_CLIENT_INTERFACE_REQUESTS \
"org.freedesktop.Telepathy.Client.Interface.Requests" "org.freedesktop.Telepathy.Client.Interface.Requests"
/** /**
* TP_IFACE_QUARK_CLIENT_INTERFACE_REQUESTS: * TP_IFACE_QUARK_CLIENT_INTERFACE_REQUESTS:
 End of changes. 34 change blocks. 
0 lines changed or deleted 196 lines changed or added


 tp-cli-connection.h   tp-cli-connection.h 
skipping to change at line 686 skipping to change at line 686
GMainLoop **loop) _TP_GNUC_DEPRECATED; GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */ #endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contact_capabilities_callback_fo r_get_contact_capabilities) (TpConnection *proxy, typedef void (*tp_cli_connection_interface_contact_capabilities_callback_fo r_get_contact_capabilities) (TpConnection *proxy,
GHashTable *out_Contact_Capabilities, GHashTable *out_Contact_Capabilities,
const GError *error, gpointer user_data, const GError *error, gpointer user_data,
GObject *weak_object); GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contact_capabilities_call_g et_contact_capabilities (TpConnection *proxy, TpProxyPendingCall *tp_cli_connection_interface_contact_capabilities_call_g et_contact_capabilities (TpConnection *proxy,
gint timeout_ms, gint timeout_ms,
const GArray *in_handles, const GArray *in_Handles,
tp_cli_connection_interface_contact_capabilities_callback_for_get_conta ct_capabilities callback, tp_cli_connection_interface_contact_capabilities_callback_for_get_conta ct_capabilities callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object); GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED #ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_contact_capabilities_run_get_contact_c apabilities (TpConnection *proxy, gboolean tp_cli_connection_interface_contact_capabilities_run_get_contact_c apabilities (TpConnection *proxy,
gint timeout_ms, gint timeout_ms,
const GArray *in_handles, const GArray *in_Handles,
GHashTable **out_Contact_Capabilities, GHashTable **out_Contact_Capabilities,
GError **error, GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED; GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */ #endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contact_info_signal_callback_con
tact_info_changed) (TpConnection *proxy,
guint arg_Contact,
const GPtrArray *arg_ContactInfo,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_connection_interface_contact_info_connect_t
o_contact_info_changed (TpConnection *proxy,
tp_cli_connection_interface_contact_info_signal_callback_contact_info_c
hanged callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_connection_interface_contact_info_callback_for_get_co
ntact_info) (TpConnection *proxy,
GHashTable *out_ContactInfo,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contact_info_call_get_conta
ct_info (TpConnection *proxy,
gint timeout_ms,
const GArray *in_Contacts,
tp_cli_connection_interface_contact_info_callback_for_get_contact_info
callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_contact_info_run_get_contact_info (TpC
onnection *proxy,
gint timeout_ms,
const GArray *in_Contacts,
GHashTable **out_ContactInfo,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contact_info_callback_for_refres
h_contact_info) (TpConnection *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contact_info_call_refresh_c
ontact_info (TpConnection *proxy,
gint timeout_ms,
const GArray *in_Contacts,
tp_cli_connection_interface_contact_info_callback_for_refresh_contact_i
nfo callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_contact_info_run_refresh_contact_info
(TpConnection *proxy,
gint timeout_ms,
const GArray *in_Contacts,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contact_info_callback_for_reques
t_contact_info) (TpConnection *proxy,
const GPtrArray *out_Contact_Info,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contact_info_call_request_c
ontact_info (TpConnection *proxy,
gint timeout_ms,
guint in_Contact,
tp_cli_connection_interface_contact_info_callback_for_request_contact_i
nfo callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_contact_info_run_request_contact_info
(TpConnection *proxy,
gint timeout_ms,
guint in_Contact,
GPtrArray **out_Contact_Info,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contact_info_callback_for_set_co
ntact_info) (TpConnection *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contact_info_call_set_conta
ct_info (TpConnection *proxy,
gint timeout_ms,
const GPtrArray *in_ContactInfo,
tp_cli_connection_interface_contact_info_callback_for_set_contact_info
callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_contact_info_run_set_contact_info (TpC
onnection *proxy,
gint timeout_ms,
const GPtrArray *in_ContactInfo,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_contacts_callback_for_get_contac t_attributes) (TpConnection *proxy, typedef void (*tp_cli_connection_interface_contacts_callback_for_get_contac t_attributes) (TpConnection *proxy,
GHashTable *out_Attributes, GHashTable *out_Attributes,
const GError *error, gpointer user_data, const GError *error, gpointer user_data,
GObject *weak_object); GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_contacts_call_get_contact_a ttributes (TpConnection *proxy, TpProxyPendingCall *tp_cli_connection_interface_contacts_call_get_contact_a ttributes (TpConnection *proxy,
gint timeout_ms, gint timeout_ms,
const GArray *in_Handles, const GArray *in_Handles,
const gchar **in_Interfaces, const gchar **in_Interfaces,
gboolean in_Hold, gboolean in_Hold,
 End of changes. 3 change blocks. 
2 lines changed or deleted 116 lines changed or added


 tp-svc-connection.h   tp-svc-connection.h 
skipping to change at line 911 skipping to change at line 911
static inline static inline
/* this comment is to stop gtkdoc realising this is static */ /* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_contact_capabilities_return_from_update_ca pabilities (DBusGMethodInvocation *context); void tp_svc_connection_interface_contact_capabilities_return_from_update_ca pabilities (DBusGMethodInvocation *context);
static inline void static inline void
tp_svc_connection_interface_contact_capabilities_return_from_update_capabil ities (DBusGMethodInvocation *context) tp_svc_connection_interface_contact_capabilities_return_from_update_capabil ities (DBusGMethodInvocation *context)
{ {
dbus_g_method_return (context); dbus_g_method_return (context);
} }
typedef void (*tp_svc_connection_interface_contact_capabilities_get_contact _capabilities_impl) (TpSvcConnectionInterfaceContactCapabilities *self, typedef void (*tp_svc_connection_interface_contact_capabilities_get_contact _capabilities_impl) (TpSvcConnectionInterfaceContactCapabilities *self,
const GArray *in_handles, const GArray *in_Handles,
DBusGMethodInvocation *context); DBusGMethodInvocation *context);
void tp_svc_connection_interface_contact_capabilities_implement_get_contact _capabilities (TpSvcConnectionInterfaceContactCapabilitiesClass *klass, tp_ svc_connection_interface_contact_capabilities_get_contact_capabilities_impl impl); void tp_svc_connection_interface_contact_capabilities_implement_get_contact _capabilities (TpSvcConnectionInterfaceContactCapabilitiesClass *klass, tp_ svc_connection_interface_contact_capabilities_get_contact_capabilities_impl impl);
/** /**
* tp_svc_connection_interface_contact_capabilities_return_from_get_contact _capabilities: * tp_svc_connection_interface_contact_capabilities_return_from_get_contact _capabilities:
* @context: The D-Bus method invocation context * @context: The D-Bus method invocation context
* @out_Contact_Capabilities: GHashTable * (FIXME, generate documentation) * @out_Contact_Capabilities: GHashTable * (FIXME, generate documentation)
* *
* Return successfully by calling dbus_g_method_return(). * Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety. * This inline function exists only to provide type-safety.
*/ */
skipping to change at line 938 skipping to change at line 938
GHashTable *out_Contact_Capabilities) GHashTable *out_Contact_Capabilities)
{ {
dbus_g_method_return (context, dbus_g_method_return (context,
out_Contact_Capabilities); out_Contact_Capabilities);
} }
void tp_svc_connection_interface_contact_capabilities_emit_contact_capabili ties_changed (gpointer instance, void tp_svc_connection_interface_contact_capabilities_emit_contact_capabili ties_changed (gpointer instance,
GHashTable *arg_caps); GHashTable *arg_caps);
/** /**
* TpSvcConnectionInterfaceContactInfo:
*
* Dummy typedef representing any implementation of this interface.
*/
typedef struct _TpSvcConnectionInterfaceContactInfo TpSvcConnectionInterfac
eContactInfo;
/**
* TpSvcConnectionInterfaceContactInfoClass:
*
* The class of TpSvcConnectionInterfaceContactInfo.
*
* In a full implementation of this interface (i.e. all
* methods implemented), the interface initialization
* function used in G_IMPLEMENT_INTERFACE() would
* typically look like this:
*
* <programlisting>
* static void
* implement_connection_interface_contact_info (gpointer klass,
* gpointer unused G_GNUC_UNUSED)
* {
* #define IMPLEMENT(x) tp_svc_connection_interface_contact_info_implement_
&num;&num;x (\
* klass, my_object_&num;&num;x)
* IMPLEMENT (get_contact_info);
* IMPLEMENT (refresh_contact_info);
* IMPLEMENT (request_contact_info);
* IMPLEMENT (set_contact_info);
* #undef IMPLEMENT
* }
* </programlisting>
*/
typedef struct _TpSvcConnectionInterfaceContactInfoClass TpSvcConnectionInt
erfaceContactInfoClass;
GType tp_svc_connection_interface_contact_info_get_type (void);
#define TP_TYPE_SVC_CONNECTION_INTERFACE_CONTACT_INFO \
(tp_svc_connection_interface_contact_info_get_type ())
#define TP_SVC_CONNECTION_INTERFACE_CONTACT_INFO(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_CONTA
CT_INFO, TpSvcConnectionInterfaceContactInfo))
#define TP_IS_SVC_CONNECTION_INTERFACE_CONTACT_INFO(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_CONTA
CT_INFO))
#define TP_SVC_CONNECTION_INTERFACE_CONTACT_INFO_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_CO
NTACT_INFO, TpSvcConnectionInterfaceContactInfoClass))
typedef void (*tp_svc_connection_interface_contact_info_get_contact_info_im
pl) (TpSvcConnectionInterfaceContactInfo *self,
const GArray *in_Contacts,
DBusGMethodInvocation *context);
void tp_svc_connection_interface_contact_info_implement_get_contact_info (T
pSvcConnectionInterfaceContactInfoClass *klass, tp_svc_connection_interface
_contact_info_get_contact_info_impl impl);
/**
* tp_svc_connection_interface_contact_info_return_from_get_contact_info:
* @context: The D-Bus method invocation context
* @out_ContactInfo: GHashTable * (FIXME, generate documentation)
*
* Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety.
*/
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_contact_info_return_from_get_contact_info
(DBusGMethodInvocation *context,
GHashTable *out_ContactInfo);
static inline void
tp_svc_connection_interface_contact_info_return_from_get_contact_info (DBus
GMethodInvocation *context,
GHashTable *out_ContactInfo)
{
dbus_g_method_return (context,
out_ContactInfo);
}
typedef void (*tp_svc_connection_interface_contact_info_refresh_contact_inf
o_impl) (TpSvcConnectionInterfaceContactInfo *self,
const GArray *in_Contacts,
DBusGMethodInvocation *context);
void tp_svc_connection_interface_contact_info_implement_refresh_contact_inf
o (TpSvcConnectionInterfaceContactInfoClass *klass, tp_svc_connection_inter
face_contact_info_refresh_contact_info_impl impl);
/**
* tp_svc_connection_interface_contact_info_return_from_refresh_contact_inf
o:
* @context: The D-Bus method invocation context
*
* Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety.
*/
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_contact_info_return_from_refresh_contact_i
nfo (DBusGMethodInvocation *context);
static inline void
tp_svc_connection_interface_contact_info_return_from_refresh_contact_info (
DBusGMethodInvocation *context)
{
dbus_g_method_return (context);
}
typedef void (*tp_svc_connection_interface_contact_info_request_contact_inf
o_impl) (TpSvcConnectionInterfaceContactInfo *self,
guint in_Contact,
DBusGMethodInvocation *context);
void tp_svc_connection_interface_contact_info_implement_request_contact_inf
o (TpSvcConnectionInterfaceContactInfoClass *klass, tp_svc_connection_inter
face_contact_info_request_contact_info_impl impl);
/**
* tp_svc_connection_interface_contact_info_return_from_request_contact_inf
o:
* @context: The D-Bus method invocation context
* @out_Contact_Info: const GPtrArray * (FIXME, generate documentation)
*
* Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety.
*/
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_contact_info_return_from_request_contact_i
nfo (DBusGMethodInvocation *context,
const GPtrArray *out_Contact_Info);
static inline void
tp_svc_connection_interface_contact_info_return_from_request_contact_info (
DBusGMethodInvocation *context,
const GPtrArray *out_Contact_Info)
{
dbus_g_method_return (context,
out_Contact_Info);
}
typedef void (*tp_svc_connection_interface_contact_info_set_contact_info_im
pl) (TpSvcConnectionInterfaceContactInfo *self,
const GPtrArray *in_ContactInfo,
DBusGMethodInvocation *context);
void tp_svc_connection_interface_contact_info_implement_set_contact_info (T
pSvcConnectionInterfaceContactInfoClass *klass, tp_svc_connection_interface
_contact_info_set_contact_info_impl impl);
/**
* tp_svc_connection_interface_contact_info_return_from_set_contact_info:
* @context: The D-Bus method invocation context
*
* Return successfully by calling dbus_g_method_return().
* This inline function exists only to provide type-safety.
*/
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_contact_info_return_from_set_contact_info
(DBusGMethodInvocation *context);
static inline void
tp_svc_connection_interface_contact_info_return_from_set_contact_info (DBus
GMethodInvocation *context)
{
dbus_g_method_return (context);
}
void tp_svc_connection_interface_contact_info_emit_contact_info_changed (gp
ointer instance,
guint arg_Contact,
const GPtrArray *arg_ContactInfo);
/**
* TpSvcConnectionInterfaceContacts: * TpSvcConnectionInterfaceContacts:
* *
* Dummy typedef representing any implementation of this interface. * Dummy typedef representing any implementation of this interface.
*/ */
typedef struct _TpSvcConnectionInterfaceContacts TpSvcConnectionInterfaceCo ntacts; typedef struct _TpSvcConnectionInterfaceContacts TpSvcConnectionInterfaceCo ntacts;
/** /**
* TpSvcConnectionInterfaceContactsClass: * TpSvcConnectionInterfaceContactsClass:
* *
* The class of TpSvcConnectionInterfaceContacts. * The class of TpSvcConnectionInterfaceContacts.
 End of changes. 2 change blocks. 
1 lines changed or deleted 166 lines changed or added


 util.h   util.h 
skipping to change at line 102 skipping to change at line 102
const gchar *detailed_signal, GCallback c_handler, gpointer gobject, const gchar *detailed_signal, GCallback c_handler, gpointer gobject,
GConnectFlags connect_flags); GConnectFlags connect_flags);
GValueArray *tp_value_array_build (gsize length, GValueArray *tp_value_array_build (gsize length,
GType type, GType type,
...) G_GNUC_WARN_UNUSED_RESULT; ...) G_GNUC_WARN_UNUSED_RESULT;
void tp_value_array_unpack (GValueArray *array, void tp_value_array_unpack (GValueArray *array,
gsize len, gsize len,
...); ...);
typedef struct _TpWeakRef TpWeakRef;
TpWeakRef *tp_weak_ref_new (gpointer object,
gpointer user_data,
GDestroyNotify destroy) G_GNUC_WARN_UNUSED_RESULT;
gpointer tp_weak_ref_get_user_data (TpWeakRef *self) G_GNUC_WARN_UNUSED_RES
ULT;
gpointer tp_weak_ref_dup_object (TpWeakRef *self) G_GNUC_WARN_UNUSED_RESULT
;
void tp_weak_ref_destroy (TpWeakRef *self);
G_END_DECLS G_END_DECLS
#undef __TP_IN_UTIL_H__ #undef __TP_IN_UTIL_H__
#endif /* __TP_UTIL_H__ */ #endif /* __TP_UTIL_H__ */
 End of changes. 1 change blocks. 
0 lines changed or deleted 10 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/