connection-manager.h   connection-manager.h 
skipping to change at line 93 skipping to change at line 93
struct _TpConnectionManager { struct _TpConnectionManager {
/*<public>*/ /*<public>*/
TpProxy parent; TpProxy parent;
const gchar *name; const gchar *name;
const TpConnectionManagerProtocol * const *protocols; const TpConnectionManagerProtocol * const *protocols;
/* These are really booleans, but gboolean is signed. Thanks, GLib */ /* These are really booleans, but gboolean is signed. Thanks, GLib */
unsigned int running:1; unsigned int running:1;
unsigned int always_introspect:1; unsigned int always_introspect:1;
TpCMInfoSource info_source:2; /* TpCMInfoSource, but can't rely on enums being unsigned */
unsigned int info_source:2;
guint reserved_flags:28; guint reserved_flags:28;
TpConnectionManagerPrivate *priv; TpConnectionManagerPrivate *priv;
}; };
struct _TpConnectionManagerClass { struct _TpConnectionManagerClass {
/*<private>*/ /*<private>*/
TpProxyClass parent_class; TpProxyClass parent_class;
gpointer *priv; gpointer *priv;
}; };
 End of changes. 1 change blocks. 
1 lines changed or deleted 2 lines changed or added


 dbus-properties-mixin.h   dbus-properties-mixin.h 
skipping to change at line 59 skipping to change at line 59
GCallback _1; GCallback _1;
GCallback _2; GCallback _2;
} TpDBusPropertiesMixinIfaceInfo; } TpDBusPropertiesMixinIfaceInfo;
void tp_svc_interface_set_dbus_properties_info (GType g_interface, void tp_svc_interface_set_dbus_properties_info (GType g_interface,
TpDBusPropertiesMixinIfaceInfo *info); TpDBusPropertiesMixinIfaceInfo *info);
/* ---- Concrete implementation (in GObject subclasses) ------------- */ /* ---- Concrete implementation (in GObject subclasses) ------------- */
typedef void (*TpDBusPropertiesMixinGetter) (GObject *object, typedef void (*TpDBusPropertiesMixinGetter) (GObject *object,
GQuark interface, GQuark name, GValue *value, gpointer getter_data); GQuark iface, GQuark name, GValue *value, gpointer getter_data);
void tp_dbus_properties_mixin_getter_gobject_properties (GObject *object, void tp_dbus_properties_mixin_getter_gobject_properties (GObject *object,
GQuark interface, GQuark name, GValue *value, gpointer getter_data); GQuark iface, GQuark name, GValue *value, gpointer getter_data);
typedef gboolean (*TpDBusPropertiesMixinSetter) (GObject *object, typedef gboolean (*TpDBusPropertiesMixinSetter) (GObject *object,
GQuark interface, GQuark name, const GValue *value, gpointer setter_dat a, GQuark iface, GQuark name, const GValue *value, gpointer setter_data,
GError **error); GError **error);
gboolean tp_dbus_properties_mixin_setter_gobject_properties (GObject *objec t, gboolean tp_dbus_properties_mixin_setter_gobject_properties (GObject *objec t,
GQuark interface, GQuark name, const GValue *value, gpointer setter_dat a, GQuark iface, GQuark name, const GValue *value, gpointer setter_data,
GError **error); GError **error);
typedef struct { typedef struct {
const gchar *name; const gchar *name;
gpointer getter_data; gpointer getter_data;
gpointer setter_data; gpointer setter_data;
/*<private>*/ /*<private>*/
GCallback _1; GCallback _1;
GCallback _2; GCallback _2;
gpointer mixin_priv; gpointer mixin_priv;
 End of changes. 4 change blocks. 
4 lines changed or deleted 4 lines changed or added


 proxy-subclass.h   proxy-subclass.h 
skipping to change at line 35 skipping to change at line 35
#include <telepathy-glib/proxy.h> #include <telepathy-glib/proxy.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef void (*TpProxyInvokeFunc) (TpProxy *self, typedef void (*TpProxyInvokeFunc) (TpProxy *self,
GError *error, GValueArray *args, GCallback callback, gpointer user_dat a, GError *error, GValueArray *args, GCallback callback, gpointer user_dat a,
GObject *weak_object); GObject *weak_object);
TpProxyPendingCall *tp_proxy_pending_call_v0_new (TpProxy *self, TpProxyPendingCall *tp_proxy_pending_call_v0_new (TpProxy *self,
GQuark interface, const gchar *member, DBusGProxy *iface_proxy, GQuark iface, const gchar *member, DBusGProxy *iface_proxy,
TpProxyInvokeFunc invoke_callback, TpProxyInvokeFunc invoke_callback,
GCallback callback, gpointer user_data, GDestroyNotify destroy, GCallback callback, gpointer user_data, GDestroyNotify destroy,
GObject *weak_object, gboolean cancel_must_raise); GObject *weak_object, gboolean cancel_must_raise);
void tp_proxy_pending_call_v0_take_pending_call (TpProxyPendingCall *pc, void tp_proxy_pending_call_v0_take_pending_call (TpProxyPendingCall *pc,
DBusGProxyCall *pending_call); DBusGProxyCall *pending_call);
void tp_proxy_pending_call_v0_take_results (TpProxyPendingCall *pc, void tp_proxy_pending_call_v0_take_results (TpProxyPendingCall *pc,
GError *error, GValueArray *args); GError *error, GValueArray *args);
void tp_proxy_pending_call_v0_completed (gpointer p); void tp_proxy_pending_call_v0_completed (gpointer p);
TpProxySignalConnection *tp_proxy_signal_connection_v0_new (TpProxy *self, TpProxySignalConnection *tp_proxy_signal_connection_v0_new (TpProxy *self,
GQuark interface, const gchar *member, GQuark iface, const gchar *member,
const GType *expected_types, const GType *expected_types,
GCallback collect_args, TpProxyInvokeFunc invoke_callback, GCallback collect_args, TpProxyInvokeFunc invoke_callback,
GCallback callback, gpointer user_data, GDestroyNotify destroy, GCallback callback, gpointer user_data, GDestroyNotify destroy,
GObject *weak_object, GError **error); GObject *weak_object, GError **error);
void tp_proxy_signal_connection_v0_take_results void tp_proxy_signal_connection_v0_take_results
(TpProxySignalConnection *sc, GValueArray *args); (TpProxySignalConnection *sc, GValueArray *args);
typedef void (*TpProxyInterfaceAddedCb) (TpProxy *self, typedef void (*TpProxyInterfaceAddedCb) (TpProxy *self,
guint quark, DBusGProxy *proxy, gpointer unused); guint quark, DBusGProxy *proxy, gpointer unused);
void tp_proxy_or_subclass_hook_on_interface_add (GType proxy_or_subclass, void tp_proxy_or_subclass_hook_on_interface_add (GType proxy_or_subclass,
TpProxyInterfaceAddedCb callback); TpProxyInterfaceAddedCb callback);
DBusGProxy *tp_proxy_borrow_interface_by_id (TpProxy *self, GQuark interfac e, DBusGProxy *tp_proxy_borrow_interface_by_id (TpProxy *self, GQuark iface,
GError **error); GError **error);
DBusGProxy *tp_proxy_add_interface_by_id (TpProxy *self, GQuark interface); DBusGProxy *tp_proxy_add_interface_by_id (TpProxy *self, GQuark iface);
void tp_proxy_invalidate (TpProxy *self, const GError *error); void tp_proxy_invalidate (TpProxy *self, const GError *error);
void tp_proxy_subclass_add_error_mapping (GType proxy_subclass, void tp_proxy_subclass_add_error_mapping (GType proxy_subclass,
const gchar *static_prefix, GQuark domain, GType code_enum_type); const gchar *static_prefix, GQuark domain, GType code_enum_type);
gboolean tp_proxy_dbus_g_proxy_claim_for_signal_adding (DBusGProxy *proxy); gboolean tp_proxy_dbus_g_proxy_claim_for_signal_adding (DBusGProxy *proxy);
void tp_proxy_init_known_interfaces (void); void tp_proxy_init_known_interfaces (void);
 End of changes. 4 change blocks. 
4 lines changed or deleted 4 lines changed or added


 proxy.h   proxy.h 
skipping to change at line 111 skipping to change at line 111
(G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_PROXY, \ (G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_PROXY, \
TpProxyClass)) TpProxyClass))
#define TP_IS_PROXY(obj) \ #define TP_IS_PROXY(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_PROXY)) (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_PROXY))
#define TP_IS_PROXY_CLASS(klass) \ #define TP_IS_PROXY_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_PROXY)) (G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_PROXY))
#define TP_PROXY_GET_CLASS(obj) \ #define TP_PROXY_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_PROXY, \ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_PROXY, \
TpProxyClass)) TpProxyClass))
gboolean tp_proxy_has_interface_by_id (gpointer self, GQuark interface); gboolean tp_proxy_has_interface_by_id (gpointer self, GQuark iface);
static inline gboolean static inline gboolean
_tp_proxy_inline_has_interface (gpointer self, const gchar *interface) _tp_proxy_inline_has_interface (gpointer self, const gchar *iface)
{ {
GQuark q = g_quark_try_string (interface); GQuark q = g_quark_try_string (iface);
return q != 0 && tp_proxy_has_interface_by_id (self, q); return q != 0 && tp_proxy_has_interface_by_id (self, q);
} }
#define tp_proxy_has_interface(self, interface) \ #define tp_proxy_has_interface(self, iface) \
(_tp_proxy_inline_has_interface (self, interface)) (_tp_proxy_inline_has_interface (self, iface))
TpDBusDaemon *tp_proxy_get_dbus_daemon (gpointer self); TpDBusDaemon *tp_proxy_get_dbus_daemon (gpointer self);
DBusGConnection *tp_proxy_get_dbus_connection (gpointer self); DBusGConnection *tp_proxy_get_dbus_connection (gpointer self);
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);
 End of changes. 4 change blocks. 
5 lines changed or deleted 5 lines changed or added


 telepathy-interfaces.h   telepathy-interfaces.h 
skipping to change at line 24 skipping to change at line 24
* TP_IFACE_QUARK_CONNECTION_MANAGER: * TP_IFACE_QUARK_CONNECTION_MANAGER:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ConnectionManager" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ConnectionManager"
*/ */
#define TP_IFACE_QUARK_CONNECTION_MANAGER \ #define TP_IFACE_QUARK_CONNECTION_MANAGER \
(tp_iface_quark_connection_manager ()) (tp_iface_quark_connection_manager ())
GQuark tp_iface_quark_connection_manager (void); GQuark tp_iface_quark_connection_manager (void);
/** /**
* TP_PROP_CONNECTION_MANAGER_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ConnectionM
anager.Interfaces"
*/
#define TP_PROP_CONNECTION_MANAGER_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_SELF_HANDLE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
SelfHandle"
*/
#define TP_PROP_CONNECTION_SELF_HANDLE \
"org.freedesktop.Telepathy.Connection.SelfHandle"
/**
* 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:
* *
skipping to change at line 78 skipping to change at line 92
* TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS: * TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Avatars" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Avatars"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_AVATARS \
(tp_iface_quark_connection_interface_avatars ()) (tp_iface_quark_connection_interface_avatars ())
GQuark tp_iface_quark_connection_interface_avatars (void); GQuark tp_iface_quark_connection_interface_avatars (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_SUPPORTED_AVATAR_MIME_TYPES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.SupportedAvatarMIMETypes"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_SUPPORTED_AVATAR_MIME_TYPES \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.SupportedAvatarMIME
Types"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MINIMUM_AVATAR_HEIGHT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.MinimumAvatarHeight"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MINIMUM_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MinimumAvatarHeight
"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MINIMUM_AVATAR_WIDTH:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.MinimumAvatarWidth"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MINIMUM_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MinimumAvatarWidth"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_RECOMMENDED_AVATAR_HEIGHT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.RecommendedAvatarHeight"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_RECOMMENDED_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.RecommendedAvatarHe
ight"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_RECOMMENDED_AVATAR_WIDTH:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.RecommendedAvatarWidth"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_RECOMMENDED_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.RecommendedAvatarWi
dth"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_HEIGHT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.MaximumAvatarHeight"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarHeight
"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_WIDTH:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.MaximumAvatarWidth"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarWidth"
/**
* TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Avatars.MaximumAvatarBytes"
*/
#define TP_PROP_CONNECTION_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES \
"org.freedesktop.Telepathy.Connection.Interface.Avatars.MaximumAvatarBytes"
/**
* 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:
* *
skipping to change at line 132 skipping to change at line 209
* TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE: * TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.SimplePresence" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.SimplePresence"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_SIMPLE_PRESENCE \
(tp_iface_quark_connection_interface_simple_presence ()) (tp_iface_quark_connection_interface_simple_presence ())
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:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.SimplePresence.Statuses"
*/
#define TP_PROP_CONNECTION_INTERFACE_SIMPLE_PRESENCE_STATUSES \
"org.freedesktop.Telepathy.Connection.Interface.SimplePresence.Statuses"
/**
* 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 168 skipping to change at line 252
* TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACTS: * TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACTS:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Contacts" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Contacts"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACTS \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACTS \
(tp_iface_quark_connection_interface_contacts ()) (tp_iface_quark_connection_interface_contacts ())
GQuark tp_iface_quark_connection_interface_contacts (void); GQuark tp_iface_quark_connection_interface_contacts (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Contacts.ContactAttributeInterfaces"
*/
#define TP_PROP_CONNECTION_INTERFACE_CONTACTS_CONTACT_ATTRIBUTE_INTERFACES
\
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Requests" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Requests"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_REQUESTS \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_REQUESTS \
(tp_iface_quark_connection_interface_requests ()) (tp_iface_quark_connection_interface_requests ())
GQuark tp_iface_quark_connection_interface_requests (void); GQuark tp_iface_quark_connection_interface_requests (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_REQUESTS_CHANNELS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Requests.Channels"
*/
#define TP_PROP_CONNECTION_INTERFACE_REQUESTS_CHANNELS \
"org.freedesktop.Telepathy.Connection.Interface.Requests.Channels"
/**
* TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_CLASSES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Requests.RequestableChannelClasses"
*/
#define TP_PROP_CONNECTION_INTERFACE_REQUESTS_REQUESTABLE_CHANNEL_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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Location" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Connection.Interface.Location"
*/ */
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_LOCATION \ #define TP_IFACE_QUARK_CONNECTION_INTERFACE_LOCATION \
(tp_iface_quark_connection_interface_location ()) (tp_iface_quark_connection_interface_location ())
GQuark tp_iface_quark_connection_interface_location (void); GQuark tp_iface_quark_connection_interface_location (void);
/** /**
* TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL_TYPES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Location.LocationAccessControlTypes"
*/
#define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL_TYPES
\
"org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont
rolTypes"
/**
* TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Connection.
Interface.Location.LocationAccessControl"
*/
#define TP_PROP_CONNECTION_INTERFACE_LOCATION_LOCATION_ACCESS_CONTROL \
"org.freedesktop.Telepathy.Connection.Interface.Location.LocationAccessCont
rol"
/**
* 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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel"
*/ */
#define TP_IFACE_QUARK_CHANNEL \ #define TP_IFACE_QUARK_CHANNEL \
(tp_iface_quark_channel ()) (tp_iface_quark_channel ())
GQuark tp_iface_quark_channel (void); GQuark tp_iface_quark_channel (void);
/** /**
* TP_PROP_CHANNEL_CHANNEL_TYPE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Cha
nnelType"
*/
#define TP_PROP_CHANNEL_CHANNEL_TYPE \
"org.freedesktop.Telepathy.Channel.ChannelType"
/**
* TP_PROP_CHANNEL_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erfaces"
*/
#define TP_PROP_CHANNEL_INTERFACES \
"org.freedesktop.Telepathy.Channel.Interfaces"
/**
* TP_PROP_CHANNEL_TARGET_HANDLE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Tar
getHandle"
*/
#define TP_PROP_CHANNEL_TARGET_HANDLE \
"org.freedesktop.Telepathy.Channel.TargetHandle"
/**
* TP_PROP_CHANNEL_TARGET_ID:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Tar
getID"
*/
#define TP_PROP_CHANNEL_TARGET_ID \
"org.freedesktop.Telepathy.Channel.TargetID"
/**
* TP_PROP_CHANNEL_TARGET_HANDLE_TYPE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Tar
getHandleType"
*/
#define TP_PROP_CHANNEL_TARGET_HANDLE_TYPE \
"org.freedesktop.Telepathy.Channel.TargetHandleType"
/**
* TP_PROP_CHANNEL_REQUESTED:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Req
uested"
*/
#define TP_PROP_CHANNEL_REQUESTED \
"org.freedesktop.Telepathy.Channel.Requested"
/**
* TP_PROP_CHANNEL_INITIATOR_HANDLE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Ini
tiatorHandle"
*/
#define TP_PROP_CHANNEL_INITIATOR_HANDLE \
"org.freedesktop.Telepathy.Channel.InitiatorHandle"
/**
* TP_PROP_CHANNEL_INITIATOR_ID:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Ini
tiatorID"
*/
#define TP_PROP_CHANNEL_INITIATOR_ID \
"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 258 skipping to change at line 442
* TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER: * TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.FileTransfer" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.FileTransfer"
*/ */
#define TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER \ #define TP_IFACE_QUARK_CHANNEL_TYPE_FILE_TRANSFER \
(tp_iface_quark_channel_type_file_transfer ()) (tp_iface_quark_channel_type_file_transfer ())
GQuark tp_iface_quark_channel_type_file_transfer (void); GQuark tp_iface_quark_channel_type_file_transfer (void);
/** /**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_STATE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.State"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_STATE \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.State"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_TYPE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.ContentType"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_TYPE \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.ContentType"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_FILENAME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.Filename"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_FILENAME \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.Filename"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_SIZE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.Size"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_SIZE \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.Size"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_HASH_TYPE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.ContentHashType"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_HASH_TYPE \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.ContentHashType"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_HASH:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.ContentHash"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_CONTENT_HASH \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.ContentHash"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_DESCRIPTION:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.Description"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_DESCRIPTION \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.Description"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_DATE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.Date"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_DATE \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.Date"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_AVAILABLE_SOCKET_TYPES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.AvailableSocketTypes"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_AVAILABLE_SOCKET_TYPES \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.AvailableSocketTypes"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_TRANSFERRED_BYTES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.TransferredBytes"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_TRANSFERRED_BYTES \
"org.freedesktop.Telepathy.Channel.Type.FileTransfer.TransferredBytes"
/**
* TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.FileTransfer.InitialOffset"
*/
#define TP_PROP_CHANNEL_TYPE_FILE_TRANSFER_INITIAL_OFFSET \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.StreamedMedia" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.StreamedMedia"
*/ */
#define TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA \ #define TP_IFACE_QUARK_CHANNEL_TYPE_STREAMED_MEDIA \
(tp_iface_quark_channel_type_streamed_media ()) (tp_iface_quark_channel_type_streamed_media ())
GQuark tp_iface_quark_channel_type_streamed_media (void); GQuark tp_iface_quark_channel_type_streamed_media (void);
/** /**
* TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_AUDIO:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.StreamedMedia.InitialAudio"
*/
#define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_AUDIO \
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia.InitialAudio"
/**
* TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.StreamedMedia.InitialVideo"
*/
#define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_INITIAL_VIDEO \
"org.freedesktop.Telepathy.Channel.Type.StreamedMedia.InitialVideo"
/**
* TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.StreamedMedia.ImmutableStreams"
*/
#define TP_PROP_CHANNEL_TYPE_STREAMED_MEDIA_IMMUTABLE_STREAMS \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.RoomList" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.RoomList"
*/ */
#define TP_IFACE_QUARK_CHANNEL_TYPE_ROOM_LIST \ #define TP_IFACE_QUARK_CHANNEL_TYPE_ROOM_LIST \
(tp_iface_quark_channel_type_room_list ()) (tp_iface_quark_channel_type_room_list ())
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:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.RoomList.Server"
*/
#define TP_PROP_CHANNEL_TYPE_ROOM_LIST_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 348 skipping to change at line 649
* TP_IFACE_QUARK_CHANNEL_TYPE_STREAM_TUBE: * TP_IFACE_QUARK_CHANNEL_TYPE_STREAM_TUBE:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.StreamTube" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.StreamTube"
*/ */
#define TP_IFACE_QUARK_CHANNEL_TYPE_STREAM_TUBE \ #define TP_IFACE_QUARK_CHANNEL_TYPE_STREAM_TUBE \
(tp_iface_quark_channel_type_stream_tube ()) (tp_iface_quark_channel_type_stream_tube ())
GQuark tp_iface_quark_channel_type_stream_tube (void); GQuark tp_iface_quark_channel_type_stream_tube (void);
/** /**
* TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.StreamTube.Service"
*/
#define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE \
"org.freedesktop.Telepathy.Channel.Type.StreamTube.Service"
/**
* TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.StreamTube.SupportedSocketTypes"
*/
#define TP_PROP_CHANNEL_TYPE_STREAM_TUBE_SUPPORTED_SOCKET_TYPES \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.DBusTube" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Type.DBusTube"
*/ */
#define TP_IFACE_QUARK_CHANNEL_TYPE_DBUS_TUBE \ #define TP_IFACE_QUARK_CHANNEL_TYPE_DBUS_TUBE \
(tp_iface_quark_channel_type_dbus_tube ()) (tp_iface_quark_channel_type_dbus_tube ())
GQuark tp_iface_quark_channel_type_dbus_tube (void); GQuark tp_iface_quark_channel_type_dbus_tube (void);
/** /**
* TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SERVICE_NAME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.DBusTube.ServiceName"
*/
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SERVICE_NAME \
"org.freedesktop.Telepathy.Channel.Type.DBusTube.ServiceName"
/**
* TP_PROP_CHANNEL_TYPE_DBUS_TUBE_DBUS_NAMES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.DBusTube.DBusNames"
*/
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_DBUS_NAMES \
"org.freedesktop.Telepathy.Channel.Type.DBusTube.DBusNames"
/**
* TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Typ
e.DBusTube.SupportedAccessControls"
*/
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SUPPORTED_ACCESS_CONTROLS \
"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 456 skipping to change at line 795
* TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP: * TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Group" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Group"
*/ */
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_GROUP \
(tp_iface_quark_channel_interface_group ()) (tp_iface_quark_channel_interface_group ())
GQuark tp_iface_quark_channel_interface_group (void); GQuark tp_iface_quark_channel_interface_group (void);
/** /**
* TP_PROP_CHANNEL_INTERFACE_GROUP_GROUP_FLAGS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.GroupFlags"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_GROUP_FLAGS \
"org.freedesktop.Telepathy.Channel.Interface.Group.GroupFlags"
/**
* TP_PROP_CHANNEL_INTERFACE_GROUP_HANDLE_OWNERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.HandleOwners"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_HANDLE_OWNERS \
"org.freedesktop.Telepathy.Channel.Interface.Group.HandleOwners"
/**
* TP_PROP_CHANNEL_INTERFACE_GROUP_LOCAL_PENDING_MEMBERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.LocalPendingMembers"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_LOCAL_PENDING_MEMBERS \
"org.freedesktop.Telepathy.Channel.Interface.Group.LocalPendingMembers"
/**
* TP_PROP_CHANNEL_INTERFACE_GROUP_MEMBERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.Members"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_MEMBERS \
"org.freedesktop.Telepathy.Channel.Interface.Group.Members"
/**
* TP_PROP_CHANNEL_INTERFACE_GROUP_REMOTE_PENDING_MEMBERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.RemotePendingMembers"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_REMOTE_PENDING_MEMBERS \
"org.freedesktop.Telepathy.Channel.Interface.Group.RemotePendingMembers"
/**
* TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Group.SelfHandle"
*/
#define TP_PROP_CHANNEL_INTERFACE_GROUP_SELF_HANDLE \
"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 510 skipping to change at line 896
* TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES: * TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Messages" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Messages"
*/ */
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_MESSAGES \
(tp_iface_quark_channel_interface_messages ()) (tp_iface_quark_channel_interface_messages ())
GQuark tp_iface_quark_channel_interface_messages (void); GQuark tp_iface_quark_channel_interface_messages (void);
/** /**
* TP_PROP_CHANNEL_INTERFACE_MESSAGES_SUPPORTED_CONTENT_TYPES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Messages.SupportedContentTypes"
*/
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_SUPPORTED_CONTENT_TYPES \
"org.freedesktop.Telepathy.Channel.Interface.Messages.SupportedContentTypes
"
/**
* TP_PROP_CHANNEL_INTERFACE_MESSAGES_MESSAGE_PART_SUPPORT_FLAGS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Messages.MessagePartSupportFlags"
*/
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_MESSAGE_PART_SUPPORT_FLAGS \
"org.freedesktop.Telepathy.Channel.Interface.Messages.MessagePartSupportFla
gs"
/**
* TP_PROP_CHANNEL_INTERFACE_MESSAGES_PENDING_MESSAGES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Messages.PendingMessages"
*/
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_PENDING_MESSAGES \
"org.freedesktop.Telepathy.Channel.Interface.Messages.PendingMessages"
/**
* TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Messages.DeliveryReportingSupport"
*/
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_DELIVERY_REPORTING_SUPPORT \
"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 546 skipping to change at line 963
* TP_IFACE_QUARK_CHANNEL_INTERFACE_TUBE: * TP_IFACE_QUARK_CHANNEL_INTERFACE_TUBE:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Tube" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Channel.Interface.Tube"
*/ */
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_TUBE \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_TUBE \
(tp_iface_quark_channel_interface_tube ()) (tp_iface_quark_channel_interface_tube ())
GQuark tp_iface_quark_channel_interface_tube (void); GQuark tp_iface_quark_channel_interface_tube (void);
/** /**
* TP_PROP_CHANNEL_INTERFACE_TUBE_PARAMETERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Tube.Parameters"
*/
#define TP_PROP_CHANNEL_INTERFACE_TUBE_PARAMETERS \
"org.freedesktop.Telepathy.Channel.Interface.Tube.Parameters"
/**
* TP_PROP_CHANNEL_INTERFACE_TUBE_STATE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Channel.Int
erface.Tube.State"
*/
#define TP_PROP_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 582 skipping to change at line 1014
* TP_IFACE_QUARK_MEDIA_STREAM_HANDLER: * TP_IFACE_QUARK_MEDIA_STREAM_HANDLER:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Media.StreamHandler" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Media.StreamHandler"
*/ */
#define TP_IFACE_QUARK_MEDIA_STREAM_HANDLER \ #define TP_IFACE_QUARK_MEDIA_STREAM_HANDLER \
(tp_iface_quark_media_stream_handler ()) (tp_iface_quark_media_stream_handler ())
GQuark tp_iface_quark_media_stream_handler (void); GQuark tp_iface_quark_media_stream_handler (void);
/** /**
* TP_PROP_MEDIA_STREAM_HANDLER_STUN_SERVERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea
mHandler.STUNServers"
*/
#define TP_PROP_MEDIA_STREAM_HANDLER_STUN_SERVERS \
"org.freedesktop.Telepathy.Media.StreamHandler.STUNServers"
/**
* TP_PROP_MEDIA_STREAM_HANDLER_CREATED_LOCALLY:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea
mHandler.CreatedLocally"
*/
#define TP_PROP_MEDIA_STREAM_HANDLER_CREATED_LOCALLY \
"org.freedesktop.Telepathy.Media.StreamHandler.CreatedLocally"
/**
* TP_PROP_MEDIA_STREAM_HANDLER_NAT_TRAVERSAL:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea
mHandler.NATTraversal"
*/
#define TP_PROP_MEDIA_STREAM_HANDLER_NAT_TRAVERSAL \
"org.freedesktop.Telepathy.Media.StreamHandler.NATTraversal"
/**
* TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Media.Strea
mHandler.RelayInfo"
*/
#define TP_PROP_MEDIA_STREAM_HANDLER_RELAY_INFO \
"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 690 skipping to change at line 1153
* TP_IFACE_QUARK_ACCOUNT_MANAGER: * TP_IFACE_QUARK_ACCOUNT_MANAGER:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.AccountManager" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.AccountManager"
*/ */
#define TP_IFACE_QUARK_ACCOUNT_MANAGER \ #define TP_IFACE_QUARK_ACCOUNT_MANAGER \
(tp_iface_quark_account_manager ()) (tp_iface_quark_account_manager ())
GQuark tp_iface_quark_account_manager (void); GQuark tp_iface_quark_account_manager (void);
/** /**
* TP_PROP_ACCOUNT_MANAGER_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.AccountMana
ger.Interfaces"
*/
#define TP_PROP_ACCOUNT_MANAGER_INTERFACES \
"org.freedesktop.Telepathy.AccountManager.Interfaces"
/**
* TP_PROP_ACCOUNT_MANAGER_VALID_ACCOUNTS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.AccountMana
ger.ValidAccounts"
*/
#define TP_PROP_ACCOUNT_MANAGER_VALID_ACCOUNTS \
"org.freedesktop.Telepathy.AccountManager.ValidAccounts"
/**
* TP_PROP_ACCOUNT_MANAGER_INVALID_ACCOUNTS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.AccountMana
ger.InvalidAccounts"
*/
#define TP_PROP_ACCOUNT_MANAGER_INVALID_ACCOUNTS \
"org.freedesktop.Telepathy.AccountManager.InvalidAccounts"
/**
* TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.AccountMana
ger.SupportedAccountProperties"
*/
#define TP_PROP_ACCOUNT_MANAGER_SUPPORTED_ACCOUNT_PROPERTIES \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Account" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Account"
*/ */
#define TP_IFACE_QUARK_ACCOUNT \ #define TP_IFACE_QUARK_ACCOUNT \
(tp_iface_quark_account ()) (tp_iface_quark_account ())
GQuark tp_iface_quark_account (void); GQuark tp_iface_quark_account (void);
/** /**
* TP_PROP_ACCOUNT_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Int
erfaces"
*/
#define TP_PROP_ACCOUNT_INTERFACES \
"org.freedesktop.Telepathy.Account.Interfaces"
/**
* TP_PROP_ACCOUNT_DISPLAY_NAME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Dis
playName"
*/
#define TP_PROP_ACCOUNT_DISPLAY_NAME \
"org.freedesktop.Telepathy.Account.DisplayName"
/**
* TP_PROP_ACCOUNT_ICON:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Ico
n"
*/
#define TP_PROP_ACCOUNT_ICON \
"org.freedesktop.Telepathy.Account.Icon"
/**
* TP_PROP_ACCOUNT_VALID:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Val
id"
*/
#define TP_PROP_ACCOUNT_VALID \
"org.freedesktop.Telepathy.Account.Valid"
/**
* TP_PROP_ACCOUNT_ENABLED:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Ena
bled"
*/
#define TP_PROP_ACCOUNT_ENABLED \
"org.freedesktop.Telepathy.Account.Enabled"
/**
* TP_PROP_ACCOUNT_NICKNAME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Nic
kname"
*/
#define TP_PROP_ACCOUNT_NICKNAME \
"org.freedesktop.Telepathy.Account.Nickname"
/**
* TP_PROP_ACCOUNT_PARAMETERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Par
ameters"
*/
#define TP_PROP_ACCOUNT_PARAMETERS \
"org.freedesktop.Telepathy.Account.Parameters"
/**
* TP_PROP_ACCOUNT_AUTOMATIC_PRESENCE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Aut
omaticPresence"
*/
#define TP_PROP_ACCOUNT_AUTOMATIC_PRESENCE \
"org.freedesktop.Telepathy.Account.AutomaticPresence"
/**
* TP_PROP_ACCOUNT_CONNECT_AUTOMATICALLY:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Con
nectAutomatically"
*/
#define TP_PROP_ACCOUNT_CONNECT_AUTOMATICALLY \
"org.freedesktop.Telepathy.Account.ConnectAutomatically"
/**
* TP_PROP_ACCOUNT_CONNECTION:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Con
nection"
*/
#define TP_PROP_ACCOUNT_CONNECTION \
"org.freedesktop.Telepathy.Account.Connection"
/**
* TP_PROP_ACCOUNT_CONNECTION_STATUS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Con
nectionStatus"
*/
#define TP_PROP_ACCOUNT_CONNECTION_STATUS \
"org.freedesktop.Telepathy.Account.ConnectionStatus"
/**
* TP_PROP_ACCOUNT_CONNECTION_STATUS_REASON:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Con
nectionStatusReason"
*/
#define TP_PROP_ACCOUNT_CONNECTION_STATUS_REASON \
"org.freedesktop.Telepathy.Account.ConnectionStatusReason"
/**
* TP_PROP_ACCOUNT_CURRENT_PRESENCE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Cur
rentPresence"
*/
#define TP_PROP_ACCOUNT_CURRENT_PRESENCE \
"org.freedesktop.Telepathy.Account.CurrentPresence"
/**
* TP_PROP_ACCOUNT_REQUESTED_PRESENCE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Req
uestedPresence"
*/
#define TP_PROP_ACCOUNT_REQUESTED_PRESENCE \
"org.freedesktop.Telepathy.Account.RequestedPresence"
/**
* TP_PROP_ACCOUNT_NORMALIZED_NAME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Nor
malizedName"
*/
#define TP_PROP_ACCOUNT_NORMALIZED_NAME \
"org.freedesktop.Telepathy.Account.NormalizedName"
/**
* TP_PROP_ACCOUNT_HAS_BEEN_ONLINE:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Has
BeenOnline"
*/
#define TP_PROP_ACCOUNT_HAS_BEEN_ONLINE \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Account.Interface.Avatar" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Account.Interface.Avatar"
*/ */
#define TP_IFACE_QUARK_ACCOUNT_INTERFACE_AVATAR \ #define TP_IFACE_QUARK_ACCOUNT_INTERFACE_AVATAR \
(tp_iface_quark_account_interface_avatar ()) (tp_iface_quark_account_interface_avatar ())
GQuark tp_iface_quark_account_interface_avatar (void); GQuark tp_iface_quark_account_interface_avatar (void);
/** /**
* TP_PROP_ACCOUNT_INTERFACE_AVATAR_AVATAR:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Account.Int
erface.Avatar.Avatar"
*/
#define TP_PROP_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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatcher" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatcher"
*/ */
#define TP_IFACE_QUARK_CHANNEL_DISPATCHER \ #define TP_IFACE_QUARK_CHANNEL_DISPATCHER \
(tp_iface_quark_channel_dispatcher ()) (tp_iface_quark_channel_dispatcher ())
GQuark tp_iface_quark_channel_dispatcher (void); GQuark tp_iface_quark_channel_dispatcher (void);
/** /**
* TP_PROP_CHANNEL_DISPATCHER_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atcher.Interfaces"
*/
#define TP_PROP_CHANNEL_DISPATCHER_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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatcher.Interface.OperationList"
*/ */
#define TP_IFACE_QUARK_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \ #define TP_IFACE_QUARK_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \
(tp_iface_quark_channel_dispatcher_interface_operation_list ()) (tp_iface_quark_channel_dispatcher_interface_operation_list ())
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:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atcher.Interface.OperationList.DispatchOperations"
*/
#define TP_PROP_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST_DISPATCH_OPERAT
IONS \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatchOperation" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelDispatchOperation"
*/ */
#define TP_IFACE_QUARK_CHANNEL_DISPATCH_OPERATION \ #define TP_IFACE_QUARK_CHANNEL_DISPATCH_OPERATION \
(tp_iface_quark_channel_dispatch_operation ()) (tp_iface_quark_channel_dispatch_operation ())
GQuark tp_iface_quark_channel_dispatch_operation (void); GQuark tp_iface_quark_channel_dispatch_operation (void);
/** /**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atchOperation.Interfaces"
*/
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_INTERFACES \
"org.freedesktop.Telepathy.ChannelDispatchOperation.Interfaces"
/**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_CONNECTION:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atchOperation.Connection"
*/
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_CONNECTION \
"org.freedesktop.Telepathy.ChannelDispatchOperation.Connection"
/**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_ACCOUNT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atchOperation.Account"
*/
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_ACCOUNT \
"org.freedesktop.Telepathy.ChannelDispatchOperation.Account"
/**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_CHANNELS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atchOperation.Channels"
*/
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_CHANNELS \
"org.freedesktop.Telepathy.ChannelDispatchOperation.Channels"
/**
* TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelDisp
atchOperation.PossibleHandlers"
*/
#define TP_PROP_CHANNEL_DISPATCH_OPERATION_POSSIBLE_HANDLERS \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelRequest" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.ChannelRequest"
*/ */
#define TP_IFACE_QUARK_CHANNEL_REQUEST \ #define TP_IFACE_QUARK_CHANNEL_REQUEST \
(tp_iface_quark_channel_request ()) (tp_iface_quark_channel_request ())
GQuark tp_iface_quark_channel_request (void); GQuark tp_iface_quark_channel_request (void);
/** /**
* TP_PROP_CHANNEL_REQUEST_ACCOUNT:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ
est.Account"
*/
#define TP_PROP_CHANNEL_REQUEST_ACCOUNT \
"org.freedesktop.Telepathy.ChannelRequest.Account"
/**
* TP_PROP_CHANNEL_REQUEST_USER_ACTION_TIME:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ
est.UserActionTime"
*/
#define TP_PROP_CHANNEL_REQUEST_USER_ACTION_TIME \
"org.freedesktop.Telepathy.ChannelRequest.UserActionTime"
/**
* TP_PROP_CHANNEL_REQUEST_PREFERRED_HANDLER:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ
est.PreferredHandler"
*/
#define TP_PROP_CHANNEL_REQUEST_PREFERRED_HANDLER \
"org.freedesktop.Telepathy.ChannelRequest.PreferredHandler"
/**
* TP_PROP_CHANNEL_REQUEST_REQUESTS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ
est.Requests"
*/
#define TP_PROP_CHANNEL_REQUEST_REQUESTS \
"org.freedesktop.Telepathy.ChannelRequest.Requests"
/**
* TP_PROP_CHANNEL_REQUEST_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.ChannelRequ
est.Interfaces"
*/
#define TP_PROP_CHANNEL_REQUEST_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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client"
*/ */
#define TP_IFACE_QUARK_CLIENT \ #define TP_IFACE_QUARK_CLIENT \
(tp_iface_quark_client ()) (tp_iface_quark_client ())
GQuark tp_iface_quark_client (void); GQuark tp_iface_quark_client (void);
/** /**
* TP_PROP_CLIENT_INTERFACES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Inte
rfaces"
*/
#define TP_PROP_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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Observer" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Observer"
*/ */
#define TP_IFACE_QUARK_CLIENT_OBSERVER \ #define TP_IFACE_QUARK_CLIENT_OBSERVER \
(tp_iface_quark_client_observer ()) (tp_iface_quark_client_observer ())
GQuark tp_iface_quark_client_observer (void); GQuark tp_iface_quark_client_observer (void);
/** /**
* TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Obse
rver.ObserverChannelFilter"
*/
#define TP_PROP_CLIENT_OBSERVER_OBSERVER_CHANNEL_FILTER \
"org.freedesktop.Telepathy.Client.Observer.ObserverChannelFilter"
/**
* 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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Approver" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Approver"
*/ */
#define TP_IFACE_QUARK_CLIENT_APPROVER \ #define TP_IFACE_QUARK_CLIENT_APPROVER \
(tp_iface_quark_client_approver ()) (tp_iface_quark_client_approver ())
GQuark tp_iface_quark_client_approver (void); GQuark tp_iface_quark_client_approver (void);
/** /**
* TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Appr
over.ApproverChannelFilter"
*/
#define TP_PROP_CLIENT_APPROVER_APPROVER_CHANNEL_FILTER \
"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:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Handler" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Client.Handler"
*/ */
#define TP_IFACE_QUARK_CLIENT_HANDLER \ #define TP_IFACE_QUARK_CLIENT_HANDLER \
(tp_iface_quark_client_handler ()) (tp_iface_quark_client_handler ())
GQuark tp_iface_quark_client_handler (void); GQuark tp_iface_quark_client_handler (void);
/** /**
* TP_PROP_CLIENT_HANDLER_HANDLER_CHANNEL_FILTER:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand
ler.HandlerChannelFilter"
*/
#define TP_PROP_CLIENT_HANDLER_HANDLER_CHANNEL_FILTER \
"org.freedesktop.Telepathy.Client.Handler.HandlerChannelFilter"
/**
* TP_PROP_CLIENT_HANDLER_BYPASS_APPROVAL:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand
ler.BypassApproval"
*/
#define TP_PROP_CLIENT_HANDLER_BYPASS_APPROVAL \
"org.freedesktop.Telepathy.Client.Handler.BypassApproval"
/**
* TP_PROP_CLIENT_HANDLER_CAPABILITIES:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand
ler.Capabilities"
*/
#define TP_PROP_CLIENT_HANDLER_CAPABILITIES \
"org.freedesktop.Telepathy.Client.Handler.Capabilities"
/**
* TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Client.Hand
ler.HandledChannels"
*/
#define TP_PROP_CLIENT_HANDLER_HANDLED_CHANNELS \
"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:
* *
skipping to change at line 904 skipping to change at line 1676
/** /**
* TP_IFACE_QUARK_DEBUG: * TP_IFACE_QUARK_DEBUG:
* *
* Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Debug" * Expands to a call to a function that returns a quark for the interface n ame "org.freedesktop.Telepathy.Debug"
*/ */
#define TP_IFACE_QUARK_DEBUG \ #define TP_IFACE_QUARK_DEBUG \
(tp_iface_quark_debug ()) (tp_iface_quark_debug ())
GQuark tp_iface_quark_debug (void); GQuark tp_iface_quark_debug (void);
/**
* TP_PROP_DEBUG_ENABLED:
*
* The fully-qualified property name "org.freedesktop.Telepathy.Debug.Enabl
ed"
*/
#define TP_PROP_DEBUG_ENABLED \
"org.freedesktop.Telepathy.Debug.Enabled"
 End of changes. 29 change blocks. 
0 lines changed or deleted 888 lines changed or added


 util.h   util.h 
skipping to change at line 76 skipping to change at line 76
gchar *tp_escape_as_identifier (const gchar *name); gchar *tp_escape_as_identifier (const gchar *name);
gboolean tp_strv_contains (const gchar * const *strv, const gchar *str); gboolean tp_strv_contains (const gchar * const *strv, const gchar *str);
gint64 tp_g_key_file_get_int64 (GKeyFile *key_file, const gchar *group_name , gint64 tp_g_key_file_get_int64 (GKeyFile *key_file, const gchar *group_name ,
const gchar *key, GError **error); const gchar *key, GError **error);
guint64 tp_g_key_file_get_uint64 (GKeyFile *key_file, const gchar *group_na me, guint64 tp_g_key_file_get_uint64 (GKeyFile *key_file, const gchar *group_na me,
const gchar *key, GError **error); const gchar *key, GError **error);
gulong tp_g_signal_connect_object (gpointer instance,
const gchar *detailed_signal, GCallback c_handler, gpointer gobject,
GConnectFlags connect_flags);
GValueArray *tp_value_array_build (gsize length,
GType type,
...);
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 8 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/