base-protocol.h   base-protocol.h 
skipping to change at line 127 skipping to change at line 127
typedef GStrv (*TpBaseProtocolGetInterfacesFunc) (TpBaseProtocol *self); typedef GStrv (*TpBaseProtocolGetInterfacesFunc) (TpBaseProtocol *self);
typedef void (*TpBaseProtocolGetConnectionDetailsFunc) (TpBaseProtocol *sel f, typedef void (*TpBaseProtocolGetConnectionDetailsFunc) (TpBaseProtocol *sel f,
GStrv *connection_interfaces, GStrv *connection_interfaces,
GType **channel_manager_types, GType **channel_manager_types,
gchar **icon_name, gchar **icon_name,
gchar **english_name, gchar **english_name,
gchar **vcard_field); gchar **vcard_field);
typedef void (*TpBaseProtocolGetAvatarDetailsFunc) (TpBaseProtocol *self,
GStrv *supported_mime_types,
guint *min_height,
guint *min_width,
guint *rec_height,
guint *rec_width,
guint *max_height,
guint *max_width,
guint *max_bytes);
struct _TpBaseProtocolClass struct _TpBaseProtocolClass
{ {
GObjectClass parent_class; GObjectClass parent_class;
TpDBusPropertiesMixinClass dbus_properties_class; TpDBusPropertiesMixinClass dbus_properties_class;
gboolean is_stub; gboolean is_stub;
const TpCMParamSpec *(*get_parameters) (TpBaseProtocol *self); const TpCMParamSpec *(*get_parameters) (TpBaseProtocol *self);
TpBaseConnection *(*new_connection) (TpBaseProtocol *self, TpBaseConnection *(*new_connection) (TpBaseProtocol *self,
GHashTable *asv, GHashTable *asv,
GError **error); GError **error);
skipping to change at line 156 skipping to change at line 166
void (*get_connection_details) (TpBaseProtocol *self, void (*get_connection_details) (TpBaseProtocol *self,
GStrv *connection_interfaces, GStrv *connection_interfaces,
GType **channel_manager_types, GType **channel_manager_types,
gchar **icon_name, gchar **icon_name,
gchar **english_name, gchar **english_name,
gchar **vcard_field); gchar **vcard_field);
const TpPresenceStatusSpec * (*get_statuses) (TpBaseProtocol *self); const TpPresenceStatusSpec * (*get_statuses) (TpBaseProtocol *self);
TpBaseProtocolGetAvatarDetailsFunc get_avatar_details;
/*<private>*/ /*<private>*/
GCallback padding[7]; GCallback padding[6];
TpBaseProtocolClassPrivate *priv; TpBaseProtocolClassPrivate *priv;
}; };
const gchar *tp_base_protocol_get_name (TpBaseProtocol *self); const gchar *tp_base_protocol_get_name (TpBaseProtocol *self);
GHashTable *tp_base_protocol_get_immutable_properties (TpBaseProtocol *self ); GHashTable *tp_base_protocol_get_immutable_properties (TpBaseProtocol *self );
const TpCMParamSpec *tp_base_protocol_get_parameters (TpBaseProtocol *self) ; const TpCMParamSpec *tp_base_protocol_get_parameters (TpBaseProtocol *self) ;
const TpPresenceStatusSpec *tp_base_protocol_get_statuses (TpBaseProtocol * self); const TpPresenceStatusSpec *tp_base_protocol_get_statuses (TpBaseProtocol * self);
TpBaseConnection *tp_base_protocol_new_connection (TpBaseProtocol *self, TpBaseConnection *tp_base_protocol_new_connection (TpBaseProtocol *self,
 End of changes. 3 change blocks. 
1 lines changed or deleted 13 lines changed or added


 error-str.h   error-str.h 
skipping to change at line 46 skipping to change at line 46
#define TP_ERROR_STR_CONNECTION_LOST "org.freedesktop.Telepathy.Error.Conne ctionLost" #define TP_ERROR_STR_CONNECTION_LOST "org.freedesktop.Telepathy.Error.Conne ctionLost"
#define TP_ERROR_STR_ALREADY_CONNECTED "org.freedesktop.Telepathy.Error.Alr eadyConnected" #define TP_ERROR_STR_ALREADY_CONNECTED "org.freedesktop.Telepathy.Error.Alr eadyConnected"
#define TP_ERROR_STR_CONNECTION_REPLACED "org.freedesktop.Telepathy.Error.C onnectionReplaced" #define TP_ERROR_STR_CONNECTION_REPLACED "org.freedesktop.Telepathy.Error.C onnectionReplaced"
#define TP_ERROR_STR_REGISTRATION_EXISTS "org.freedesktop.Telepathy.Error.R egistrationExists" #define TP_ERROR_STR_REGISTRATION_EXISTS "org.freedesktop.Telepathy.Error.R egistrationExists"
#define TP_ERROR_STR_SERVICE_BUSY "org.freedesktop.Telepathy.Error.ServiceB usy" #define TP_ERROR_STR_SERVICE_BUSY "org.freedesktop.Telepathy.Error.ServiceB usy"
#define TP_ERROR_STR_RESOURCE_UNAVAILABLE "org.freedesktop.Telepathy.Error. ResourceUnavailable" #define TP_ERROR_STR_RESOURCE_UNAVAILABLE "org.freedesktop.Telepathy.Error. ResourceUnavailable"
#define TP_ERROR_STR_WOULD_BREAK_ANONYMITY "org.freedesktop.Telepathy.Error .WouldBreakAnonymity" #define TP_ERROR_STR_WOULD_BREAK_ANONYMITY "org.freedesktop.Telepathy.Error .WouldBreakAnonymity"
#define TP_ERROR_STR_NOT_YET "org.freedesktop.Telepathy.Error.NotYet" #define TP_ERROR_STR_NOT_YET "org.freedesktop.Telepathy.Error.NotYet"
#define TP_ERROR_STR_REJECTED "org.freedesktop.Telepathy.Error.Rejected" #define TP_ERROR_STR_REJECTED "org.freedesktop.Telepathy.Error.Rejected"
#define TP_ERROR_STR_PICKED_UP_ELSEWHERE "org.freedesktop.Telepathy.Error.P ickedUpElsewhere" #define TP_ERROR_STR_PICKED_UP_ELSEWHERE "org.freedesktop.Telepathy.Error.P ickedUpElsewhere"
#define TP_ERROR_STR_SERVICE_CONFUSED "org.freedesktop.Telepathy.Error.Serv
iceConfused"
#define TP_ERROR_STR_CONFUSED "org.freedesktop.Telepathy.Error.Confused"
 End of changes. 1 change blocks. 
0 lines changed or deleted 0 lines changed or added


 errors.h   errors.h 
skipping to change at line 88 skipping to change at line 88
TP_ERROR_REGISTRATION_EXISTS, /*< nick=RegistrationExists >*/ TP_ERROR_REGISTRATION_EXISTS, /*< nick=RegistrationExists >*/
TP_ERROR_SERVICE_BUSY, /*< nick=ServiceBusy >*/ TP_ERROR_SERVICE_BUSY, /*< nick=ServiceBusy >*/
TP_ERROR_RESOURCE_UNAVAILABLE, /*< nick=ResourceUnavailable >*/ TP_ERROR_RESOURCE_UNAVAILABLE, /*< nick=ResourceUnavailable >*/
TP_ERROR_WOULD_BREAK_ANONYMITY, /*< nick=WouldBreakAnonymity >*/ TP_ERROR_WOULD_BREAK_ANONYMITY, /*< nick=WouldBreakAnonymity >*/
TP_ERROR_CERT_REVOKED, /*< nick=Cert.Revoked >*/ TP_ERROR_CERT_REVOKED, /*< nick=Cert.Revoked >*/
TP_ERROR_CERT_INSECURE, /*< nick=Cert.Insecure >*/ TP_ERROR_CERT_INSECURE, /*< nick=Cert.Insecure >*/
TP_ERROR_CERT_LIMIT_EXCEEDED, /*< nick=Cert.LimitExceeded >*/ TP_ERROR_CERT_LIMIT_EXCEEDED, /*< nick=Cert.LimitExceeded >*/
TP_ERROR_NOT_YET, /*< nick=NotYet >*/ TP_ERROR_NOT_YET, /*< nick=NotYet >*/
TP_ERROR_REJECTED, /*< nick=Rejected >*/ TP_ERROR_REJECTED, /*< nick=Rejected >*/
TP_ERROR_PICKED_UP_ELSEWHERE, /*< nick=PickedUpElsewhere >*/ TP_ERROR_PICKED_UP_ELSEWHERE, /*< nick=PickedUpElsewhere >*/
TP_ERROR_CONFUSED, /*< nick=Confused >*/
TP_ERROR_SERVICE_CONFUSED, /*< nick=ServiceConfused >*/
} TpError; } TpError;
const gchar *tp_error_get_dbus_name (TpError error); const gchar *tp_error_get_dbus_name (TpError error);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 1 change blocks. 
0 lines changed or deleted 2 lines changed or added


 telepathy-enums.h   telepathy-enums.h 
skipping to change at line 76 skipping to change at line 76
TP_CONNECTION_CAPABILITY_FLAG_INVITE = 2, TP_CONNECTION_CAPABILITY_FLAG_INVITE = 2,
} TpConnectionCapabilityFlags; } TpConnectionCapabilityFlags;
typedef enum { typedef enum {
TP_CONTACT_INFO_FLAG_CAN_SET = 1, TP_CONTACT_INFO_FLAG_CAN_SET = 1,
TP_CONTACT_INFO_FLAG_PUSH = 2, TP_CONTACT_INFO_FLAG_PUSH = 2,
} TpContactInfoFlags; } TpContactInfoFlags;
typedef enum { typedef enum {
TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT = 1, TP_CONTACT_INFO_FIELD_FLAG_PARAMETERS_EXACT = 1,
TP_CONTACT_INFO_FIELD_FLAG_OVERWRITTEN_BY_NICKNAME = 2,
} TpContactInfoFieldFlags; } TpContactInfoFieldFlags;
typedef enum { typedef enum {
TP_CONTACT_LIST_STATE_NONE = 0, TP_CONTACT_LIST_STATE_NONE = 0,
TP_CONTACT_LIST_STATE_WAITING = 1, TP_CONTACT_LIST_STATE_WAITING = 1,
TP_CONTACT_LIST_STATE_FAILURE = 2, TP_CONTACT_LIST_STATE_FAILURE = 2,
TP_CONTACT_LIST_STATE_SUCCESS = 3, TP_CONTACT_LIST_STATE_SUCCESS = 3,
} TpContactListState; } TpContactListState;
#define NUM_TP_CONTACT_LIST_STATES (3+1) #define NUM_TP_CONTACT_LIST_STATES (3+1)
skipping to change at line 392 skipping to change at line 393
TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_SUCCESSES = 2, TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_SUCCESSES = 2,
TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_READ = 4, TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_READ = 4,
TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_DELETED = 8, TP_DELIVERY_REPORTING_SUPPORT_FLAG_RECEIVE_DELETED = 8,
} TpDeliveryReportingSupportFlags; } TpDeliveryReportingSupportFlags;
typedef enum { typedef enum {
TP_CHANNEL_PASSWORD_FLAG_PROVIDE = 8, TP_CHANNEL_PASSWORD_FLAG_PROVIDE = 8,
} TpChannelPasswordFlags; } TpChannelPasswordFlags;
typedef enum { typedef enum {
TP_SASL_ABORT_REASON_INVALID_CHALLENGE = 0,
TP_SASL_ABORT_REASON_USER_ABORT = 1,
} TpSASLAbortReason;
#define NUM_TP_SASL_ABORT_REASONS (1+1)
typedef enum {
TP_SASL_STATUS_NOT_STARTED = 0,
TP_SASL_STATUS_IN_PROGRESS = 1,
TP_SASL_STATUS_SERVER_SUCCEEDED = 2,
TP_SASL_STATUS_CLIENT_ACCEPTED = 3,
TP_SASL_STATUS_SUCCEEDED = 4,
TP_SASL_STATUS_SERVER_FAILED = 5,
TP_SASL_STATUS_CLIENT_FAILED = 6,
} TpSASLStatus;
#define NUM_TP_SASL_STATUSES (6+1)
typedef enum {
TP_TUBE_CHANNEL_STATE_LOCAL_PENDING = 0, TP_TUBE_CHANNEL_STATE_LOCAL_PENDING = 0,
TP_TUBE_CHANNEL_STATE_REMOTE_PENDING = 1, TP_TUBE_CHANNEL_STATE_REMOTE_PENDING = 1,
TP_TUBE_CHANNEL_STATE_OPEN = 2, TP_TUBE_CHANNEL_STATE_OPEN = 2,
TP_TUBE_CHANNEL_STATE_NOT_OFFERED = 3, TP_TUBE_CHANNEL_STATE_NOT_OFFERED = 3,
} TpTubeChannelState; } TpTubeChannelState;
#define NUM_TP_TUBE_CHANNEL_STATES (3+1) #define NUM_TP_TUBE_CHANNEL_STATES (3+1)
typedef enum { typedef enum {
TP_SOCKET_ADDRESS_TYPE_UNIX = 0, TP_SOCKET_ADDRESS_TYPE_UNIX = 0,
TP_SOCKET_ADDRESS_TYPE_ABSTRACT_UNIX = 1, TP_SOCKET_ADDRESS_TYPE_ABSTRACT_UNIX = 1,
 End of changes. 2 change blocks. 
0 lines changed or deleted 18 lines changed or added


 telepathy-interfaces.h   telepathy-interfaces.h 
skipping to change at line 48 skipping to change at line 48
#define TP_PROP_PROTOCOL_VCARD_FIELD \ #define TP_PROP_PROTOCOL_VCARD_FIELD \
"org.freedesktop.Telepathy.Protocol.VCardField" "org.freedesktop.Telepathy.Protocol.VCardField"
#define TP_PROP_PROTOCOL_ENGLISH_NAME \ #define TP_PROP_PROTOCOL_ENGLISH_NAME \
"org.freedesktop.Telepathy.Protocol.EnglishName" "org.freedesktop.Telepathy.Protocol.EnglishName"
#define TP_PROP_PROTOCOL_ICON \ #define TP_PROP_PROTOCOL_ICON \
"org.freedesktop.Telepathy.Protocol.Icon" "org.freedesktop.Telepathy.Protocol.Icon"
#define TP_IFACE_PROTOCOL_INTERFACE_AVATARS \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars"
#define TP_IFACE_QUARK_PROTOCOL_INTERFACE_AVATARS \
(tp_iface_quark_protocol_interface_avatars ())
GQuark tp_iface_quark_protocol_interface_avatars (void);
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_SUPPORTED_AVATAR_MIME_TYPES \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.SupportedAvatarMIMETy
pes"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_MINIMUM_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.MinimumAvatarHeight"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_MINIMUM_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.MinimumAvatarWidth"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_RECOMMENDED_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.RecommendedAvatarHeig
ht"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_RECOMMENDED_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.RecommendedAvatarWidt
h"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_MAXIMUM_AVATAR_HEIGHT \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.MaximumAvatarHeight"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_MAXIMUM_AVATAR_WIDTH \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.MaximumAvatarWidth"
#define TP_PROP_PROTOCOL_INTERFACE_AVATARS_MAXIMUM_AVATAR_BYTES \
"org.freedesktop.Telepathy.Protocol.Interface.Avatars.MaximumAvatarBytes"
#define TP_IFACE_PROTOCOL_INTERFACE_PRESENCE \ #define TP_IFACE_PROTOCOL_INTERFACE_PRESENCE \
"org.freedesktop.Telepathy.Protocol.Interface.Presence" "org.freedesktop.Telepathy.Protocol.Interface.Presence"
#define TP_IFACE_QUARK_PROTOCOL_INTERFACE_PRESENCE \ #define TP_IFACE_QUARK_PROTOCOL_INTERFACE_PRESENCE \
(tp_iface_quark_protocol_interface_presence ()) (tp_iface_quark_protocol_interface_presence ())
GQuark tp_iface_quark_protocol_interface_presence (void); GQuark tp_iface_quark_protocol_interface_presence (void);
#define TP_PROP_PROTOCOL_INTERFACE_PRESENCE_STATUSES \ #define TP_PROP_PROTOCOL_INTERFACE_PRESENCE_STATUSES \
"org.freedesktop.Telepathy.Protocol.Interface.Presence.Statuses" "org.freedesktop.Telepathy.Protocol.Interface.Presence.Statuses"
skipping to change at line 373 skipping to change at line 405
#define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_UNREAD_MAIL_COUNT \ #define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_UNREAD_MAIL_COUNT \
"org.freedesktop.Telepathy.Connection.Interface.MailNotification.UnreadMail Count" "org.freedesktop.Telepathy.Connection.Interface.MailNotification.UnreadMail Count"
#define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_UNREAD_MAILS \ #define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_UNREAD_MAILS \
"org.freedesktop.Telepathy.Connection.Interface.MailNotification.UnreadMail s" "org.freedesktop.Telepathy.Connection.Interface.MailNotification.UnreadMail s"
#define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_MAIL_ADDRESS \ #define TP_PROP_CONNECTION_INTERFACE_MAIL_NOTIFICATION_MAIL_ADDRESS \
"org.freedesktop.Telepathy.Connection.Interface.MailNotification.MailAddres s" "org.freedesktop.Telepathy.Connection.Interface.MailNotification.MailAddres s"
#define TP_IFACE_CONNECTION_INTERFACE_POWER_SAVING \
"org.freedesktop.Telepathy.Connection.Interface.PowerSaving"
#define TP_IFACE_QUARK_CONNECTION_INTERFACE_POWER_SAVING \
(tp_iface_quark_connection_interface_power_saving ())
GQuark tp_iface_quark_connection_interface_power_saving (void);
#define TP_PROP_CONNECTION_INTERFACE_POWER_SAVING_POWER_SAVING_ACTIVE \
"org.freedesktop.Telepathy.Connection.Interface.PowerSaving.PowerSavingActi
ve"
#define TP_IFACE_CHANNEL \ #define TP_IFACE_CHANNEL \
"org.freedesktop.Telepathy.Channel" "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);
#define TP_PROP_CHANNEL_CHANNEL_TYPE \ #define TP_PROP_CHANNEL_CHANNEL_TYPE \
"org.freedesktop.Telepathy.Channel.ChannelType" "org.freedesktop.Telepathy.Channel.ChannelType"
skipping to change at line 549 skipping to change at line 592
#define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SERVICE_NAME \ #define TP_PROP_CHANNEL_TYPE_DBUS_TUBE_SERVICE_NAME \
"org.freedesktop.Telepathy.Channel.Type.DBusTube.ServiceName" "org.freedesktop.Telepathy.Channel.Type.DBusTube.ServiceName"
#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"
#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"
#define TP_IFACE_CHANNEL_TYPE_SERVER_AUTHENTICATION \
"org.freedesktop.Telepathy.Channel.Type.ServerAuthentication"
#define TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_AUTHENTICATION \
(tp_iface_quark_channel_type_server_authentication ())
GQuark tp_iface_quark_channel_type_server_authentication (void);
#define TP_PROP_CHANNEL_TYPE_SERVER_AUTHENTICATION_AUTHENTICATION_METHOD \
"org.freedesktop.Telepathy.Channel.Type.ServerAuthentication.Authentication
Method"
#define TP_IFACE_CHANNEL_TYPE_SERVER_TLS_CONNECTION \ #define TP_IFACE_CHANNEL_TYPE_SERVER_TLS_CONNECTION \
"org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection" "org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection"
#define TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_TLS_CONNECTION \ #define TP_IFACE_QUARK_CHANNEL_TYPE_SERVER_TLS_CONNECTION \
(tp_iface_quark_channel_type_server_tls_connection ()) (tp_iface_quark_channel_type_server_tls_connection ())
GQuark tp_iface_quark_channel_type_server_tls_connection (void); GQuark tp_iface_quark_channel_type_server_tls_connection (void);
#define TP_PROP_CHANNEL_TYPE_SERVER_TLS_CONNECTION_SERVER_CERTIFICATE \ #define TP_PROP_CHANNEL_TYPE_SERVER_TLS_CONNECTION_SERVER_CERTIFICATE \
"org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection.ServerCertifica te" "org.freedesktop.Telepathy.Channel.Type.ServerTLSConnection.ServerCertifica te"
skipping to change at line 715 skipping to change at line 769
"org.freedesktop.Telepathy.Channel.Interface.Messages" "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);
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_SUPPORTED_CONTENT_TYPES \ #define TP_PROP_CHANNEL_INTERFACE_MESSAGES_SUPPORTED_CONTENT_TYPES \
"org.freedesktop.Telepathy.Channel.Interface.Messages.SupportedContentTypes " "org.freedesktop.Telepathy.Channel.Interface.Messages.SupportedContentTypes "
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_MESSAGE_TYPES \
"org.freedesktop.Telepathy.Channel.Interface.Messages.MessageTypes"
#define TP_PROP_CHANNEL_INTERFACE_MESSAGES_MESSAGE_PART_SUPPORT_FLAGS \ #define TP_PROP_CHANNEL_INTERFACE_MESSAGES_MESSAGE_PART_SUPPORT_FLAGS \
"org.freedesktop.Telepathy.Channel.Interface.Messages.MessagePartSupportFla gs" "org.freedesktop.Telepathy.Channel.Interface.Messages.MessagePartSupportFla gs"
#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"
#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"
#define TP_IFACE_CHANNEL_INTERFACE_PASSWORD \ #define TP_IFACE_CHANNEL_INTERFACE_PASSWORD \
"org.freedesktop.Telepathy.Channel.Interface.Password" "org.freedesktop.Telepathy.Channel.Interface.Password"
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_PASSWORD \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_PASSWORD \
(tp_iface_quark_channel_interface_password ()) (tp_iface_quark_channel_interface_password ())
GQuark tp_iface_quark_channel_interface_password (void); GQuark tp_iface_quark_channel_interface_password (void);
#define TP_IFACE_CHANNEL_INTERFACE_SASL_AUTHENTICATION \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication"
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_SASL_AUTHENTICATION \
(tp_iface_quark_channel_interface_sasl_authentication ())
GQuark tp_iface_quark_channel_interface_sasl_authentication (void);
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_AVAILABLE_MECHANISMS
\
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.AvailableMe
chanisms"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_HAS_INITIAL_DATA \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.HasInitialD
ata"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_CAN_TRY_AGAIN \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.CanTryAgain
"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_SASL_STATUS \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.SASLStatus"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_SASL_ERROR \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.SASLError"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_SASL_ERROR_DETAILS \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.SASLErrorDe
tails"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_AUTHORIZATION_IDENTIT
Y \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.Authorizati
onIdentity"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_DEFAULT_USERNAME \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.DefaultUser
name"
#define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_DEFAULT_REALM \
"org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.DefaultReal
m"
#define TP_IFACE_CHANNEL_INTERFACE_SECURABLE \
"org.freedesktop.Telepathy.Channel.Interface.Securable"
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_SECURABLE \
(tp_iface_quark_channel_interface_securable ())
GQuark tp_iface_quark_channel_interface_securable (void);
#define TP_PROP_CHANNEL_INTERFACE_SECURABLE_ENCRYPTED \
"org.freedesktop.Telepathy.Channel.Interface.Securable.Encrypted"
#define TP_PROP_CHANNEL_INTERFACE_SECURABLE_VERIFIED \
"org.freedesktop.Telepathy.Channel.Interface.Securable.Verified"
#define TP_IFACE_CHANNEL_INTERFACE_SERVICE_POINT \ #define TP_IFACE_CHANNEL_INTERFACE_SERVICE_POINT \
"org.freedesktop.Telepathy.Channel.Interface.ServicePoint" "org.freedesktop.Telepathy.Channel.Interface.ServicePoint"
#define TP_IFACE_QUARK_CHANNEL_INTERFACE_SERVICE_POINT \ #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SERVICE_POINT \
(tp_iface_quark_channel_interface_service_point ()) (tp_iface_quark_channel_interface_service_point ())
GQuark tp_iface_quark_channel_interface_service_point (void); GQuark tp_iface_quark_channel_interface_service_point (void);
#define TP_PROP_CHANNEL_INTERFACE_SERVICE_POINT_INITIAL_SERVICE_POINT \ #define TP_PROP_CHANNEL_INTERFACE_SERVICE_POINT_INITIAL_SERVICE_POINT \
"org.freedesktop.Telepathy.Channel.Interface.ServicePoint.InitialServicePoi nt" "org.freedesktop.Telepathy.Channel.Interface.ServicePoint.InitialServicePoi nt"
skipping to change at line 938 skipping to change at line 1044
"org.freedesktop.Telepathy.Account.Interface.Avatar" "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);
#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"
#define TP_IFACE_ACCOUNT_INTERFACE_ADDRESSING \
"org.freedesktop.Telepathy.Account.Interface.Addressing"
#define TP_IFACE_QUARK_ACCOUNT_INTERFACE_ADDRESSING \
(tp_iface_quark_account_interface_addressing ())
GQuark tp_iface_quark_account_interface_addressing (void);
#define TP_PROP_ACCOUNT_INTERFACE_ADDRESSING_URI_SCHEMES \
"org.freedesktop.Telepathy.Account.Interface.Addressing.URISchemes"
#define TP_IFACE_ACCOUNT_INTERFACE_STORAGE \ #define TP_IFACE_ACCOUNT_INTERFACE_STORAGE \
"org.freedesktop.Telepathy.Account.Interface.Storage" "org.freedesktop.Telepathy.Account.Interface.Storage"
#define TP_IFACE_QUARK_ACCOUNT_INTERFACE_STORAGE \ #define TP_IFACE_QUARK_ACCOUNT_INTERFACE_STORAGE \
(tp_iface_quark_account_interface_storage ()) (tp_iface_quark_account_interface_storage ())
GQuark tp_iface_quark_account_interface_storage (void); GQuark tp_iface_quark_account_interface_storage (void);
#define TP_PROP_ACCOUNT_INTERFACE_STORAGE_STORAGE_PROVIDER \ #define TP_PROP_ACCOUNT_INTERFACE_STORAGE_STORAGE_PROVIDER \
"org.freedesktop.Telepathy.Account.Interface.Storage.StorageProvider" "org.freedesktop.Telepathy.Account.Interface.Storage.StorageProvider"
skipping to change at line 969 skipping to change at line 1086
"org.freedesktop.Telepathy.ChannelDispatcher" "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);
#define TP_PROP_CHANNEL_DISPATCHER_INTERFACES \ #define TP_PROP_CHANNEL_DISPATCHER_INTERFACES \
"org.freedesktop.Telepathy.ChannelDispatcher.Interfaces" "org.freedesktop.Telepathy.ChannelDispatcher.Interfaces"
#define TP_PROP_CHANNEL_DISPATCHER_SUPPORTS_REQUEST_HINTS \
"org.freedesktop.Telepathy.ChannelDispatcher.SupportsRequestHints"
#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"
#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);
#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"
skipping to change at line 1026 skipping to change at line 1146
#define TP_PROP_CHANNEL_REQUEST_PREFERRED_HANDLER \ #define TP_PROP_CHANNEL_REQUEST_PREFERRED_HANDLER \
"org.freedesktop.Telepathy.ChannelRequest.PreferredHandler" "org.freedesktop.Telepathy.ChannelRequest.PreferredHandler"
#define TP_PROP_CHANNEL_REQUEST_REQUESTS \ #define TP_PROP_CHANNEL_REQUEST_REQUESTS \
"org.freedesktop.Telepathy.ChannelRequest.Requests" "org.freedesktop.Telepathy.ChannelRequest.Requests"
#define TP_PROP_CHANNEL_REQUEST_INTERFACES \ #define TP_PROP_CHANNEL_REQUEST_INTERFACES \
"org.freedesktop.Telepathy.ChannelRequest.Interfaces" "org.freedesktop.Telepathy.ChannelRequest.Interfaces"
#define TP_PROP_CHANNEL_REQUEST_HINTS \
"org.freedesktop.Telepathy.ChannelRequest.Hints"
#define TP_IFACE_CLIENT \ #define TP_IFACE_CLIENT \
"org.freedesktop.Telepathy.Client" "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);
#define TP_PROP_CLIENT_INTERFACES \ #define TP_PROP_CLIENT_INTERFACES \
"org.freedesktop.Telepathy.Client.Interfaces" "org.freedesktop.Telepathy.Client.Interfaces"
 End of changes. 8 change blocks. 
0 lines changed or deleted 137 lines changed or added


 tp-cli-account.h   tp-cli-account.h 
skipping to change at line 58 skipping to change at line 58
const GError *error, gpointer user_data, const GError *error, gpointer user_data,
GObject *weak_object); GObject *weak_object);
TpProxyPendingCall *tp_cli_account_call_reconnect (TpAccount *proxy, TpProxyPendingCall *tp_cli_account_call_reconnect (TpAccount *proxy,
gint timeout_ms, gint timeout_ms,
tp_cli_account_callback_for_reconnect callback, tp_cli_account_callback_for_reconnect callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object); GObject *weak_object);
typedef void (*tp_cli_account_interface_addressing_callback_for_set_uri_sch
eme_association) (TpAccount *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_account_interface_addressing_call_set_uri_scheme
_association (TpAccount *proxy,
gint timeout_ms,
const gchar *in_URI_Scheme,
gboolean in_Association,
tp_cli_account_interface_addressing_callback_for_set_uri_scheme_associa
tion callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
typedef void (*tp_cli_account_interface_avatar_signal_callback_avatar_chang ed) (TpAccount *proxy, typedef void (*tp_cli_account_interface_avatar_signal_callback_avatar_chang ed) (TpAccount *proxy,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_account_interface_avatar_connect_to_avatar_ changed (TpAccount *proxy, TpProxySignalConnection *tp_cli_account_interface_avatar_connect_to_avatar_ changed (TpAccount *proxy,
tp_cli_account_interface_avatar_signal_callback_avatar_changed callback , tp_cli_account_interface_avatar_signal_callback_avatar_changed callback ,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
G_END_DECLS G_END_DECLS
 End of changes. 1 change blocks. 
0 lines changed or deleted 16 lines changed or added


 tp-cli-channel-dispatcher.h   tp-cli-channel-dispatcher.h 
skipping to change at line 35 skipping to change at line 35
gint timeout_ms, gint timeout_ms,
const gchar *in_Account, const gchar *in_Account,
GHashTable *in_Requested_Properties, GHashTable *in_Requested_Properties,
gint64 in_User_Action_Time, gint64 in_User_Action_Time,
const gchar *in_Preferred_Handler, const gchar *in_Preferred_Handler,
tp_cli_channel_dispatcher_callback_for_ensure_channel callback, tp_cli_channel_dispatcher_callback_for_ensure_channel callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object); GObject *weak_object);
typedef void (*tp_cli_channel_dispatcher_callback_for_create_channel_with_h
ints) (TpChannelDispatcher *proxy,
const gchar *out_Request,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_dispatcher_call_create_channel_with_hint
s (TpChannelDispatcher *proxy,
gint timeout_ms,
const gchar *in_Account,
GHashTable *in_Requested_Properties,
gint64 in_User_Action_Time,
const gchar *in_Preferred_Handler,
GHashTable *in_Hints,
tp_cli_channel_dispatcher_callback_for_create_channel_with_hints callba
ck,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
typedef void (*tp_cli_channel_dispatcher_callback_for_ensure_channel_with_h
ints) (TpChannelDispatcher *proxy,
const gchar *out_Request,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_dispatcher_call_ensure_channel_with_hint
s (TpChannelDispatcher *proxy,
gint timeout_ms,
const gchar *in_Account,
GHashTable *in_Requested_Properties,
gint64 in_User_Action_Time,
const gchar *in_Preferred_Handler,
GHashTable *in_Hints,
tp_cli_channel_dispatcher_callback_for_ensure_channel_with_hints callba
ck,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
typedef void (*tp_cli_channel_dispatcher_interface_operation_list_signal_ca llback_new_dispatch_operation) (TpChannelDispatcher *proxy, typedef void (*tp_cli_channel_dispatcher_interface_operation_list_signal_ca llback_new_dispatch_operation) (TpChannelDispatcher *proxy,
const gchar *arg_Dispatch_Operation, const gchar *arg_Dispatch_Operation,
GHashTable *arg_Properties, GHashTable *arg_Properties,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_dispatcher_interface_operation_list _connect_to_new_dispatch_operation (TpChannelDispatcher *proxy, TpProxySignalConnection *tp_cli_channel_dispatcher_interface_operation_list _connect_to_new_dispatch_operation (TpChannelDispatcher *proxy,
tp_cli_channel_dispatcher_interface_operation_list_signal_callback_new_ dispatch_operation callback, tp_cli_channel_dispatcher_interface_operation_list_signal_callback_new_ dispatch_operation callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
 End of changes. 1 change blocks. 
0 lines changed or deleted 40 lines changed or added


 tp-cli-channel-request.h   tp-cli-channel-request.h 
skipping to change at line 23 skipping to change at line 23
typedef void (*tp_cli_channel_request_signal_callback_succeeded) (TpChannel Request *proxy, typedef void (*tp_cli_channel_request_signal_callback_succeeded) (TpChannel Request *proxy,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_request_connect_to_succeeded (TpCha nnelRequest *proxy, TpProxySignalConnection *tp_cli_channel_request_connect_to_succeeded (TpCha nnelRequest *proxy,
tp_cli_channel_request_signal_callback_succeeded callback, tp_cli_channel_request_signal_callback_succeeded callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
typedef void (*tp_cli_channel_request_signal_callback_succeeded_with_channe
l) (TpChannelRequest *proxy,
const gchar *arg_Connection,
GHashTable *arg_Connection_Properties,
const gchar *arg_Channel,
GHashTable *arg_Channel_Properties,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_request_connect_to_succeeded_with_c
hannel (TpChannelRequest *proxy,
tp_cli_channel_request_signal_callback_succeeded_with_channel callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_channel_request_callback_for_proceed) (TpChannelReque st *proxy, typedef void (*tp_cli_channel_request_callback_for_proceed) (TpChannelReque st *proxy,
const GError *error, gpointer user_data, const GError *error, gpointer user_data,
GObject *weak_object); GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_request_call_proceed (TpChannelRequest * proxy, TpProxyPendingCall *tp_cli_channel_request_call_proceed (TpChannelRequest * proxy,
gint timeout_ms, gint timeout_ms,
tp_cli_channel_request_callback_for_proceed callback, tp_cli_channel_request_callback_for_proceed callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object); GObject *weak_object);
 End of changes. 1 change blocks. 
0 lines changed or deleted 15 lines changed or added


 tp-cli-channel.h   tp-cli-channel.h 
skipping to change at line 800 skipping to change at line 800
#ifndef TP_DISABLE_DEPRECATED #ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_password_run_provide_password (TpChannel *proxy, gboolean tp_cli_channel_interface_password_run_provide_password (TpChannel *proxy,
gint timeout_ms, gint timeout_ms,
const gchar *in_Password, const gchar *in_Password,
gboolean *out_Correct, gboolean *out_Correct,
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_channel_interface_sasl_authentication_signal_callback
_sasl_status_changed) (TpChannel *proxy,
guint arg_Status,
const gchar *arg_Reason,
GHashTable *arg_Details,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_interface_sasl_authentication_conne
ct_to_sasl_status_changed (TpChannel *proxy,
tp_cli_channel_interface_sasl_authentication_signal_callback_sasl_statu
s_changed callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_channel_interface_sasl_authentication_signal_callback
_new_challenge) (TpChannel *proxy,
const GArray *arg_Challenge_Data,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_interface_sasl_authentication_conne
ct_to_new_challenge (TpChannel *proxy,
tp_cli_channel_interface_sasl_authentication_signal_callback_new_challe
nge callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_channel_interface_sasl_authentication_callback_for_st
art_mechanism) (TpChannel *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_interface_sasl_authentication_call_start
_mechanism (TpChannel *proxy,
gint timeout_ms,
const gchar *in_Mechanism,
tp_cli_channel_interface_sasl_authentication_callback_for_start_mechani
sm callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_sasl_authentication_run_start_mechanism (
TpChannel *proxy,
gint timeout_ms,
const gchar *in_Mechanism,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_channel_interface_sasl_authentication_callback_for_st
art_mechanism_with_data) (TpChannel *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_interface_sasl_authentication_call_start
_mechanism_with_data (TpChannel *proxy,
gint timeout_ms,
const gchar *in_Mechanism,
const GArray *in_Initial_Data,
tp_cli_channel_interface_sasl_authentication_callback_for_start_mechani
sm_with_data callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_sasl_authentication_run_start_mechanism_w
ith_data (TpChannel *proxy,
gint timeout_ms,
const gchar *in_Mechanism,
const GArray *in_Initial_Data,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_channel_interface_sasl_authentication_callback_for_re
spond) (TpChannel *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_interface_sasl_authentication_call_respo
nd (TpChannel *proxy,
gint timeout_ms,
const GArray *in_Response_Data,
tp_cli_channel_interface_sasl_authentication_callback_for_respond callb
ack,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_sasl_authentication_run_respond (TpChanne
l *proxy,
gint timeout_ms,
const GArray *in_Response_Data,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_channel_interface_sasl_authentication_callback_for_ac
cept_sasl) (TpChannel *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_interface_sasl_authentication_call_accep
t_sasl (TpChannel *proxy,
gint timeout_ms,
tp_cli_channel_interface_sasl_authentication_callback_for_accept_sasl c
allback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_sasl_authentication_run_accept_sasl (TpCh
annel *proxy,
gint timeout_ms,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_channel_interface_sasl_authentication_callback_for_ab
ort_sasl) (TpChannel *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_channel_interface_sasl_authentication_call_abort
_sasl (TpChannel *proxy,
gint timeout_ms,
guint in_Reason,
const gchar *in_Debug_Message,
tp_cli_channel_interface_sasl_authentication_callback_for_abort_sasl ca
llback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_channel_interface_sasl_authentication_run_abort_sasl (TpCha
nnel *proxy,
gint timeout_ms,
guint in_Reason,
const gchar *in_Debug_Message,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_channel_interface_service_point_signal_callback_servi ce_point_changed) (TpChannel *proxy, typedef void (*tp_cli_channel_interface_service_point_signal_callback_servi ce_point_changed) (TpChannel *proxy,
const GValueArray *arg_Service_Point, const GValueArray *arg_Service_Point,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_channel_interface_service_point_connect_to_ service_point_changed (TpChannel *proxy, TpProxySignalConnection *tp_cli_channel_interface_service_point_connect_to_ service_point_changed (TpChannel *proxy,
tp_cli_channel_interface_service_point_signal_callback_service_point_ch anged callback, tp_cli_channel_interface_service_point_signal_callback_service_point_ch anged callback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
 End of changes. 1 change blocks. 
0 lines changed or deleted 150 lines changed or added


 tp-cli-connection.h   tp-cli-connection.h 
skipping to change at line 1398 skipping to change at line 1398
#ifndef TP_DISABLE_DEPRECATED #ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_mail_notification_run_request_mail_url (TpConnection *proxy, gboolean tp_cli_connection_interface_mail_notification_run_request_mail_url (TpConnection *proxy,
gint timeout_ms, gint timeout_ms,
const gchar *in_ID, const gchar *in_ID,
const GValue *in_URL_Data, const GValue *in_URL_Data,
GValueArray **out_URL, GValueArray **out_URL,
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_power_saving_signal_callback_pow
er_saving_changed) (TpConnection *proxy,
gboolean arg_Active,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_connection_interface_power_saving_connect_t
o_power_saving_changed (TpConnection *proxy,
tp_cli_connection_interface_power_saving_signal_callback_power_saving_c
hanged callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_connection_interface_power_saving_callback_for_set_po
wer_saving) (TpConnection *proxy,
const GError *error, gpointer user_data,
GObject *weak_object);
TpProxyPendingCall *tp_cli_connection_interface_power_saving_call_set_power
_saving (TpConnection *proxy,
gint timeout_ms,
gboolean in_Activate,
tp_cli_connection_interface_power_saving_callback_for_set_power_saving
callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_cli_connection_interface_power_saving_run_set_power_saving (TpC
onnection *proxy,
gint timeout_ms,
gboolean in_Activate,
GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
#endif /* not TP_DISABLE_DEPRECATED */
typedef void (*tp_cli_connection_interface_presence_signal_callback_presenc e_update) (TpConnection *proxy, typedef void (*tp_cli_connection_interface_presence_signal_callback_presenc e_update) (TpConnection *proxy,
GHashTable *arg_Presence, GHashTable *arg_Presence,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_connection_interface_presence_connect_to_pr esence_update (TpConnection *proxy, TpProxySignalConnection *tp_cli_connection_interface_presence_connect_to_pr esence_update (TpConnection *proxy,
tp_cli_connection_interface_presence_signal_callback_presence_update ca llback, tp_cli_connection_interface_presence_signal_callback_presence_update ca llback,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
 End of changes. 1 change blocks. 
0 lines changed or deleted 37 lines changed or added


 tp-svc-account.h   tp-svc-account.h 
skipping to change at line 66 skipping to change at line 66
static inline void static inline void
tp_svc_account_return_from_reconnect (DBusGMethodInvocation *context) tp_svc_account_return_from_reconnect (DBusGMethodInvocation *context)
{ {
dbus_g_method_return (context); dbus_g_method_return (context);
} }
void tp_svc_account_emit_removed (gpointer instance); void tp_svc_account_emit_removed (gpointer instance);
void tp_svc_account_emit_account_property_changed (gpointer instance, void tp_svc_account_emit_account_property_changed (gpointer instance,
GHashTable *arg_Properties); GHashTable *arg_Properties);
typedef struct _TpSvcAccountInterfaceAddressing TpSvcAccountInterfaceAddres
sing;
typedef struct _TpSvcAccountInterfaceAddressingClass TpSvcAccountInterfaceA
ddressingClass;
GType tp_svc_account_interface_addressing_get_type (void);
#define TP_TYPE_SVC_ACCOUNT_INTERFACE_ADDRESSING \
(tp_svc_account_interface_addressing_get_type ())
#define TP_SVC_ACCOUNT_INTERFACE_ADDRESSING(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_ACCOUNT_INTERFACE_ADDRESSI
NG, TpSvcAccountInterfaceAddressing))
#define TP_IS_SVC_ACCOUNT_INTERFACE_ADDRESSING(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_ACCOUNT_INTERFACE_ADDRESSI
NG))
#define TP_SVC_ACCOUNT_INTERFACE_ADDRESSING_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_ACCOUNT_INTERFACE_ADDRE
SSING, TpSvcAccountInterfaceAddressingClass))
typedef void (*tp_svc_account_interface_addressing_set_uri_scheme_associati
on_impl) (TpSvcAccountInterfaceAddressing *self,
const gchar *in_URI_Scheme,
gboolean in_Association,
DBusGMethodInvocation *context);
void tp_svc_account_interface_addressing_implement_set_uri_scheme_associati
on (TpSvcAccountInterfaceAddressingClass *klass, tp_svc_account_interface_a
ddressing_set_uri_scheme_association_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_account_interface_addressing_return_from_set_uri_scheme_associa
tion (DBusGMethodInvocation *context);
static inline void
tp_svc_account_interface_addressing_return_from_set_uri_scheme_association
(DBusGMethodInvocation *context)
{
dbus_g_method_return (context);
}
typedef struct _TpSvcAccountInterfaceAvatar TpSvcAccountInterfaceAvatar; typedef struct _TpSvcAccountInterfaceAvatar TpSvcAccountInterfaceAvatar;
typedef struct _TpSvcAccountInterfaceAvatarClass TpSvcAccountInterfaceAvata rClass; typedef struct _TpSvcAccountInterfaceAvatarClass TpSvcAccountInterfaceAvata rClass;
GType tp_svc_account_interface_avatar_get_type (void); GType tp_svc_account_interface_avatar_get_type (void);
#define TP_TYPE_SVC_ACCOUNT_INTERFACE_AVATAR \ #define TP_TYPE_SVC_ACCOUNT_INTERFACE_AVATAR \
(tp_svc_account_interface_avatar_get_type ()) (tp_svc_account_interface_avatar_get_type ())
#define TP_SVC_ACCOUNT_INTERFACE_AVATAR(obj) \ #define TP_SVC_ACCOUNT_INTERFACE_AVATAR(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_ACCOUNT_INTERFACE_AVATAR, TpSvcAccountInterfaceAvatar)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_ACCOUNT_INTERFACE_AVATAR, TpSvcAccountInterfaceAvatar))
#define TP_IS_SVC_ACCOUNT_INTERFACE_AVATAR(obj) \ #define TP_IS_SVC_ACCOUNT_INTERFACE_AVATAR(obj) \
 End of changes. 1 change blocks. 
0 lines changed or deleted 38 lines changed or added


 tp-svc-channel-dispatcher.h   tp-svc-channel-dispatcher.h 
skipping to change at line 59 skipping to change at line 59
void tp_svc_channel_dispatcher_return_from_ensure_channel (DBusGMethodInvoc ation *context, void tp_svc_channel_dispatcher_return_from_ensure_channel (DBusGMethodInvoc ation *context,
const gchar *out_Request); const gchar *out_Request);
static inline void static inline void
tp_svc_channel_dispatcher_return_from_ensure_channel (DBusGMethodInvocation *context, tp_svc_channel_dispatcher_return_from_ensure_channel (DBusGMethodInvocation *context,
const gchar *out_Request) const gchar *out_Request)
{ {
dbus_g_method_return (context, dbus_g_method_return (context,
out_Request); out_Request);
} }
typedef void (*tp_svc_channel_dispatcher_create_channel_with_hints_impl) (T
pSvcChannelDispatcher *self,
const gchar *in_Account,
GHashTable *in_Requested_Properties,
gint64 in_User_Action_Time,
const gchar *in_Preferred_Handler,
GHashTable *in_Hints,
DBusGMethodInvocation *context);
void tp_svc_channel_dispatcher_implement_create_channel_with_hints (TpSvcCh
annelDispatcherClass *klass, tp_svc_channel_dispatcher_create_channel_with_
hints_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_dispatcher_return_from_create_channel_with_hints (DBusG
MethodInvocation *context,
const gchar *out_Request);
static inline void
tp_svc_channel_dispatcher_return_from_create_channel_with_hints (DBusGMetho
dInvocation *context,
const gchar *out_Request)
{
dbus_g_method_return (context,
out_Request);
}
typedef void (*tp_svc_channel_dispatcher_ensure_channel_with_hints_impl) (T
pSvcChannelDispatcher *self,
const gchar *in_Account,
GHashTable *in_Requested_Properties,
gint64 in_User_Action_Time,
const gchar *in_Preferred_Handler,
GHashTable *in_Hints,
DBusGMethodInvocation *context);
void tp_svc_channel_dispatcher_implement_ensure_channel_with_hints (TpSvcCh
annelDispatcherClass *klass, tp_svc_channel_dispatcher_ensure_channel_with_
hints_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_dispatcher_return_from_ensure_channel_with_hints (DBusG
MethodInvocation *context,
const gchar *out_Request);
static inline void
tp_svc_channel_dispatcher_return_from_ensure_channel_with_hints (DBusGMetho
dInvocation *context,
const gchar *out_Request)
{
dbus_g_method_return (context,
out_Request);
}
typedef struct _TpSvcChannelDispatcherInterfaceOperationList TpSvcChannelDi spatcherInterfaceOperationList; typedef struct _TpSvcChannelDispatcherInterfaceOperationList TpSvcChannelDi spatcherInterfaceOperationList;
typedef struct _TpSvcChannelDispatcherInterfaceOperationListClass TpSvcChan nelDispatcherInterfaceOperationListClass; typedef struct _TpSvcChannelDispatcherInterfaceOperationListClass TpSvcChan nelDispatcherInterfaceOperationListClass;
GType tp_svc_channel_dispatcher_interface_operation_list_get_type (void); GType tp_svc_channel_dispatcher_interface_operation_list_get_type (void);
#define TP_TYPE_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \ #define TP_TYPE_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST \
(tp_svc_channel_dispatcher_interface_operation_list_get_type ()) (tp_svc_channel_dispatcher_interface_operation_list_get_type ())
#define TP_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST(obj) \ #define TP_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_DISPATCHER_INTERFA CE_OPERATION_LIST, TpSvcChannelDispatcherInterfaceOperationList)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_DISPATCHER_INTERFA CE_OPERATION_LIST, TpSvcChannelDispatcherInterfaceOperationList))
#define TP_IS_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST(obj) \ #define TP_IS_SVC_CHANNEL_DISPATCHER_INTERFACE_OPERATION_LIST(obj) \
 End of changes. 1 change blocks. 
0 lines changed or deleted 50 lines changed or added


 tp-svc-channel-request.h   tp-svc-channel-request.h 
skipping to change at line 49 skipping to change at line 49
static inline void static inline void
tp_svc_channel_request_return_from_cancel (DBusGMethodInvocation *context) tp_svc_channel_request_return_from_cancel (DBusGMethodInvocation *context)
{ {
dbus_g_method_return (context); dbus_g_method_return (context);
} }
void tp_svc_channel_request_emit_failed (gpointer instance, void tp_svc_channel_request_emit_failed (gpointer instance,
const gchar *arg_Error, const gchar *arg_Error,
const gchar *arg_Message); const gchar *arg_Message);
void tp_svc_channel_request_emit_succeeded (gpointer instance); void tp_svc_channel_request_emit_succeeded (gpointer instance);
void tp_svc_channel_request_emit_succeeded_with_channel (gpointer instance,
const gchar *arg_Connection,
GHashTable *arg_Connection_Properties,
const gchar *arg_Channel,
GHashTable *arg_Channel_Properties);
G_END_DECLS G_END_DECLS
 End of changes. 1 change blocks. 
0 lines changed or deleted 5 lines changed or added


 tp-svc-channel.h   tp-svc-channel.h 
skipping to change at line 665 skipping to change at line 665
gboolean out_Correct) gboolean out_Correct)
{ {
dbus_g_method_return (context, dbus_g_method_return (context,
out_Correct); out_Correct);
} }
void tp_svc_channel_interface_password_emit_password_flags_changed (gpointe r instance, void tp_svc_channel_interface_password_emit_password_flags_changed (gpointe r instance,
guint arg_Added, guint arg_Added,
guint arg_Removed); guint arg_Removed);
typedef struct _TpSvcChannelInterfaceSASLAuthentication TpSvcChannelInterfa
ceSASLAuthentication;
typedef struct _TpSvcChannelInterfaceSASLAuthenticationClass TpSvcChannelIn
terfaceSASLAuthenticationClass;
GType tp_svc_channel_interface_sasl_authentication_get_type (void);
#define TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION \
(tp_svc_channel_interface_sasl_authentication_get_type ())
#define TP_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUT
HENTICATION, TpSvcChannelInterfaceSASLAuthentication))
#define TP_IS_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUT
HENTICATION))
#define TP_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_
AUTHENTICATION, TpSvcChannelInterfaceSASLAuthenticationClass))
typedef void (*tp_svc_channel_interface_sasl_authentication_start_mechanism
_impl) (TpSvcChannelInterfaceSASLAuthentication *self,
const gchar *in_Mechanism,
DBusGMethodInvocation *context);
void tp_svc_channel_interface_sasl_authentication_implement_start_mechanism
(TpSvcChannelInterfaceSASLAuthenticationClass *klass, tp_svc_channel_inter
face_sasl_authentication_start_mechanism_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_interface_sasl_authentication_return_from_start_mechani
sm (DBusGMethodInvocation *context);
static inline void
tp_svc_channel_interface_sasl_authentication_return_from_start_mechanism (D
BusGMethodInvocation *context)
{
dbus_g_method_return (context);
}
typedef void (*tp_svc_channel_interface_sasl_authentication_start_mechanism
_with_data_impl) (TpSvcChannelInterfaceSASLAuthentication *self,
const gchar *in_Mechanism,
const GArray *in_Initial_Data,
DBusGMethodInvocation *context);
void tp_svc_channel_interface_sasl_authentication_implement_start_mechanism
_with_data (TpSvcChannelInterfaceSASLAuthenticationClass *klass, tp_svc_cha
nnel_interface_sasl_authentication_start_mechanism_with_data_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_interface_sasl_authentication_return_from_start_mechani
sm_with_data (DBusGMethodInvocation *context);
static inline void
tp_svc_channel_interface_sasl_authentication_return_from_start_mechanism_wi
th_data (DBusGMethodInvocation *context)
{
dbus_g_method_return (context);
}
typedef void (*tp_svc_channel_interface_sasl_authentication_respond_impl) (
TpSvcChannelInterfaceSASLAuthentication *self,
const GArray *in_Response_Data,
DBusGMethodInvocation *context);
void tp_svc_channel_interface_sasl_authentication_implement_respond (TpSvcC
hannelInterfaceSASLAuthenticationClass *klass, tp_svc_channel_interface_sas
l_authentication_respond_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_interface_sasl_authentication_return_from_respond (DBus
GMethodInvocation *context);
static inline void
tp_svc_channel_interface_sasl_authentication_return_from_respond (DBusGMeth
odInvocation *context)
{
dbus_g_method_return (context);
}
typedef void (*tp_svc_channel_interface_sasl_authentication_accept_sasl_imp
l) (TpSvcChannelInterfaceSASLAuthentication *self,
DBusGMethodInvocation *context);
void tp_svc_channel_interface_sasl_authentication_implement_accept_sasl (Tp
SvcChannelInterfaceSASLAuthenticationClass *klass, tp_svc_channel_interface
_sasl_authentication_accept_sasl_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_interface_sasl_authentication_return_from_accept_sasl (
DBusGMethodInvocation *context);
static inline void
tp_svc_channel_interface_sasl_authentication_return_from_accept_sasl (DBusG
MethodInvocation *context)
{
dbus_g_method_return (context);
}
typedef void (*tp_svc_channel_interface_sasl_authentication_abort_sasl_impl
) (TpSvcChannelInterfaceSASLAuthentication *self,
guint in_Reason,
const gchar *in_Debug_Message,
DBusGMethodInvocation *context);
void tp_svc_channel_interface_sasl_authentication_implement_abort_sasl (TpS
vcChannelInterfaceSASLAuthenticationClass *klass, tp_svc_channel_interface_
sasl_authentication_abort_sasl_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_channel_interface_sasl_authentication_return_from_abort_sasl (D
BusGMethodInvocation *context);
static inline void
tp_svc_channel_interface_sasl_authentication_return_from_abort_sasl (DBusGM
ethodInvocation *context)
{
dbus_g_method_return (context);
}
void tp_svc_channel_interface_sasl_authentication_emit_sasl_status_changed
(gpointer instance,
guint arg_Status,
const gchar *arg_Reason,
GHashTable *arg_Details);
void tp_svc_channel_interface_sasl_authentication_emit_new_challenge (gpoin
ter instance,
const GArray *arg_Challenge_Data);
typedef struct _TpSvcChannelInterfaceSMS TpSvcChannelInterfaceSMS; typedef struct _TpSvcChannelInterfaceSMS TpSvcChannelInterfaceSMS;
typedef struct _TpSvcChannelInterfaceSMSClass TpSvcChannelInterfaceSMSClass ; typedef struct _TpSvcChannelInterfaceSMSClass TpSvcChannelInterfaceSMSClass ;
GType tp_svc_channel_interface_sms_get_type (void); GType tp_svc_channel_interface_sms_get_type (void);
#define TP_TYPE_SVC_CHANNEL_INTERFACE_SMS \ #define TP_TYPE_SVC_CHANNEL_INTERFACE_SMS \
(tp_svc_channel_interface_sms_get_type ()) (tp_svc_channel_interface_sms_get_type ())
#define TP_SVC_CHANNEL_INTERFACE_SMS(obj) \ #define TP_SVC_CHANNEL_INTERFACE_SMS(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS, TpS vcChannelInterfaceSMS)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS, TpS vcChannelInterfaceSMS))
#define TP_IS_SVC_CHANNEL_INTERFACE_SMS(obj) \ #define TP_IS_SVC_CHANNEL_INTERFACE_SMS(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS)) (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS))
#define TP_SVC_CHANNEL_INTERFACE_SMS_GET_CLASS(obj) \ #define TP_SVC_CHANNEL_INTERFACE_SMS_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS, TpSvcChannelInterfaceSMSClass)) (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SMS, TpSvcChannelInterfaceSMSClass))
typedef struct _TpSvcChannelInterfaceSecurable TpSvcChannelInterfaceSecurab
le;
typedef struct _TpSvcChannelInterfaceSecurableClass TpSvcChannelInterfaceSe
curableClass;
GType tp_svc_channel_interface_securable_get_type (void);
#define TP_TYPE_SVC_CHANNEL_INTERFACE_SECURABLE \
(tp_svc_channel_interface_securable_get_type ())
#define TP_SVC_CHANNEL_INTERFACE_SECURABLE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SECURABL
E, TpSvcChannelInterfaceSecurable))
#define TP_IS_SVC_CHANNEL_INTERFACE_SECURABLE(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SECURABL
E))
#define TP_SVC_CHANNEL_INTERFACE_SECURABLE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SECUR
ABLE, TpSvcChannelInterfaceSecurableClass))
typedef struct _TpSvcChannelInterfaceServicePoint TpSvcChannelInterfaceServ icePoint; typedef struct _TpSvcChannelInterfaceServicePoint TpSvcChannelInterfaceServ icePoint;
typedef struct _TpSvcChannelInterfaceServicePointClass TpSvcChannelInterfac eServicePointClass; typedef struct _TpSvcChannelInterfaceServicePointClass TpSvcChannelInterfac eServicePointClass;
GType tp_svc_channel_interface_service_point_get_type (void); GType tp_svc_channel_interface_service_point_get_type (void);
#define TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_POINT \ #define TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_POINT \
(tp_svc_channel_interface_service_point_get_type ()) (tp_svc_channel_interface_service_point_get_type ())
#define TP_SVC_CHANNEL_INTERFACE_SERVICE_POINT(obj) \ #define TP_SVC_CHANNEL_INTERFACE_SERVICE_POINT(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_ POINT, TpSvcChannelInterfaceServicePoint)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_ POINT, TpSvcChannelInterfaceServicePoint))
#define TP_IS_SVC_CHANNEL_INTERFACE_SERVICE_POINT(obj) \ #define TP_IS_SVC_CHANNEL_INTERFACE_SERVICE_POINT(obj) \
skipping to change at line 953 skipping to change at line 1054
tp_svc_channel_type_room_list_return_from_stop_listing (DBusGMethodInvocati on *context) tp_svc_channel_type_room_list_return_from_stop_listing (DBusGMethodInvocati on *context)
{ {
dbus_g_method_return (context); dbus_g_method_return (context);
} }
void tp_svc_channel_type_room_list_emit_got_rooms (gpointer instance, void tp_svc_channel_type_room_list_emit_got_rooms (gpointer instance,
const GPtrArray *arg_Rooms); const GPtrArray *arg_Rooms);
void tp_svc_channel_type_room_list_emit_listing_rooms (gpointer instance, void tp_svc_channel_type_room_list_emit_listing_rooms (gpointer instance,
gboolean arg_Listing); gboolean arg_Listing);
typedef struct _TpSvcChannelTypeServerAuthentication TpSvcChannelTypeServer
Authentication;
typedef struct _TpSvcChannelTypeServerAuthenticationClass TpSvcChannelTypeS
erverAuthenticationClass;
GType tp_svc_channel_type_server_authentication_get_type (void);
#define TP_TYPE_SVC_CHANNEL_TYPE_SERVER_AUTHENTICATION \
(tp_svc_channel_type_server_authentication_get_type ())
#define TP_SVC_CHANNEL_TYPE_SERVER_AUTHENTICATION(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_TYPE_SERVER_AUTHEN
TICATION, TpSvcChannelTypeServerAuthentication))
#define TP_IS_SVC_CHANNEL_TYPE_SERVER_AUTHENTICATION(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_TYPE_SERVER_AUTHEN
TICATION))
#define TP_SVC_CHANNEL_TYPE_SERVER_AUTHENTICATION_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_TYPE_SERVER_AUT
HENTICATION, TpSvcChannelTypeServerAuthenticationClass))
typedef struct _TpSvcChannelTypeServerTLSConnection TpSvcChannelTypeServerT LSConnection; typedef struct _TpSvcChannelTypeServerTLSConnection TpSvcChannelTypeServerT LSConnection;
typedef struct _TpSvcChannelTypeServerTLSConnectionClass TpSvcChannelTypeSe rverTLSConnectionClass; typedef struct _TpSvcChannelTypeServerTLSConnectionClass TpSvcChannelTypeSe rverTLSConnectionClass;
GType tp_svc_channel_type_server_tls_connection_get_type (void); GType tp_svc_channel_type_server_tls_connection_get_type (void);
#define TP_TYPE_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION \ #define TP_TYPE_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION \
(tp_svc_channel_type_server_tls_connection_get_type ()) (tp_svc_channel_type_server_tls_connection_get_type ())
#define TP_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION(obj) \ #define TP_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_TYPE_SERVER_TLS_CO NNECTION, TpSvcChannelTypeServerTLSConnection)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_TYPE_SERVER_TLS_CO NNECTION, TpSvcChannelTypeServerTLSConnection))
#define TP_IS_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION(obj) \ #define TP_IS_SVC_CHANNEL_TYPE_SERVER_TLS_CONNECTION(obj) \
 End of changes. 3 change blocks. 
0 lines changed or deleted 157 lines changed or added


 tp-svc-connection.h   tp-svc-connection.h 
skipping to change at line 1098 skipping to change at line 1098
out_URL); out_URL);
} }
void tp_svc_connection_interface_mail_notification_emit_mails_received (gpo inter instance, void tp_svc_connection_interface_mail_notification_emit_mails_received (gpo inter instance,
const GPtrArray *arg_Mails); const GPtrArray *arg_Mails);
void tp_svc_connection_interface_mail_notification_emit_unread_mails_change d (gpointer instance, void tp_svc_connection_interface_mail_notification_emit_unread_mails_change d (gpointer instance,
guint arg_Count, guint arg_Count,
const GPtrArray *arg_Mails_Added, const GPtrArray *arg_Mails_Added,
const gchar **arg_Mails_Removed); const gchar **arg_Mails_Removed);
typedef struct _TpSvcConnectionInterfacePowerSaving TpSvcConnectionInterfac
ePowerSaving;
typedef struct _TpSvcConnectionInterfacePowerSavingClass TpSvcConnectionInt
erfacePowerSavingClass;
GType tp_svc_connection_interface_power_saving_get_type (void);
#define TP_TYPE_SVC_CONNECTION_INTERFACE_POWER_SAVING \
(tp_svc_connection_interface_power_saving_get_type ())
#define TP_SVC_CONNECTION_INTERFACE_POWER_SAVING(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_POWER
_SAVING, TpSvcConnectionInterfacePowerSaving))
#define TP_IS_SVC_CONNECTION_INTERFACE_POWER_SAVING(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_POWER
_SAVING))
#define TP_SVC_CONNECTION_INTERFACE_POWER_SAVING_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_PO
WER_SAVING, TpSvcConnectionInterfacePowerSavingClass))
typedef void (*tp_svc_connection_interface_power_saving_set_power_saving_im
pl) (TpSvcConnectionInterfacePowerSaving *self,
gboolean in_Activate,
DBusGMethodInvocation *context);
void tp_svc_connection_interface_power_saving_implement_set_power_saving (T
pSvcConnectionInterfacePowerSavingClass *klass, tp_svc_connection_interface
_power_saving_set_power_saving_impl impl);
static inline
/* this comment is to stop gtkdoc realising this is static */
void tp_svc_connection_interface_power_saving_return_from_set_power_saving
(DBusGMethodInvocation *context);
static inline void
tp_svc_connection_interface_power_saving_return_from_set_power_saving (DBus
GMethodInvocation *context)
{
dbus_g_method_return (context);
}
void tp_svc_connection_interface_power_saving_emit_power_saving_changed (gp
ointer instance,
gboolean arg_Active);
typedef struct _TpSvcConnectionInterfacePresence TpSvcConnectionInterfacePr esence; typedef struct _TpSvcConnectionInterfacePresence TpSvcConnectionInterfacePr esence;
typedef struct _TpSvcConnectionInterfacePresenceClass TpSvcConnectionInterf acePresenceClass; typedef struct _TpSvcConnectionInterfacePresenceClass TpSvcConnectionInterf acePresenceClass;
GType tp_svc_connection_interface_presence_get_type (void); GType tp_svc_connection_interface_presence_get_type (void);
#define TP_TYPE_SVC_CONNECTION_INTERFACE_PRESENCE \ #define TP_TYPE_SVC_CONNECTION_INTERFACE_PRESENCE \
(tp_svc_connection_interface_presence_get_type ()) (tp_svc_connection_interface_presence_get_type ())
#define TP_SVC_CONNECTION_INTERFACE_PRESENCE(obj) \ #define TP_SVC_CONNECTION_INTERFACE_PRESENCE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_PRESE NCE, TpSvcConnectionInterfacePresence)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CONNECTION_INTERFACE_PRESE NCE, TpSvcConnectionInterfacePresence))
#define TP_IS_SVC_CONNECTION_INTERFACE_PRESENCE(obj) \ #define TP_IS_SVC_CONNECTION_INTERFACE_PRESENCE(obj) \
 End of changes. 1 change blocks. 
0 lines changed or deleted 41 lines changed or added


 tp-svc-protocol.h   tp-svc-protocol.h 
skipping to change at line 53 skipping to change at line 53
void tp_svc_protocol_return_from_normalize_contact (DBusGMethodInvocation * context, void tp_svc_protocol_return_from_normalize_contact (DBusGMethodInvocation * context,
const gchar *out_Normalized_Contact_ID); const gchar *out_Normalized_Contact_ID);
static inline void static inline void
tp_svc_protocol_return_from_normalize_contact (DBusGMethodInvocation *conte xt, tp_svc_protocol_return_from_normalize_contact (DBusGMethodInvocation *conte xt,
const gchar *out_Normalized_Contact_ID) const gchar *out_Normalized_Contact_ID)
{ {
dbus_g_method_return (context, dbus_g_method_return (context,
out_Normalized_Contact_ID); out_Normalized_Contact_ID);
} }
typedef struct _TpSvcProtocolInterfaceAvatars TpSvcProtocolInterfaceAvatars
;
typedef struct _TpSvcProtocolInterfaceAvatarsClass TpSvcProtocolInterfaceAv
atarsClass;
GType tp_svc_protocol_interface_avatars_get_type (void);
#define TP_TYPE_SVC_PROTOCOL_INTERFACE_AVATARS \
(tp_svc_protocol_interface_avatars_get_type ())
#define TP_SVC_PROTOCOL_INTERFACE_AVATARS(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_PROTOCOL_INTERFACE_AVATARS
, TpSvcProtocolInterfaceAvatars))
#define TP_IS_SVC_PROTOCOL_INTERFACE_AVATARS(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_PROTOCOL_INTERFACE_AVATARS
))
#define TP_SVC_PROTOCOL_INTERFACE_AVATARS_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_PROTOCOL_INTERFACE_AVAT
ARS, TpSvcProtocolInterfaceAvatarsClass))
typedef struct _TpSvcProtocolInterfacePresence TpSvcProtocolInterfacePresen ce; typedef struct _TpSvcProtocolInterfacePresence TpSvcProtocolInterfacePresen ce;
typedef struct _TpSvcProtocolInterfacePresenceClass TpSvcProtocolInterfaceP resenceClass; typedef struct _TpSvcProtocolInterfacePresenceClass TpSvcProtocolInterfaceP resenceClass;
GType tp_svc_protocol_interface_presence_get_type (void); GType tp_svc_protocol_interface_presence_get_type (void);
#define TP_TYPE_SVC_PROTOCOL_INTERFACE_PRESENCE \ #define TP_TYPE_SVC_PROTOCOL_INTERFACE_PRESENCE \
(tp_svc_protocol_interface_presence_get_type ()) (tp_svc_protocol_interface_presence_get_type ())
#define TP_SVC_PROTOCOL_INTERFACE_PRESENCE(obj) \ #define TP_SVC_PROTOCOL_INTERFACE_PRESENCE(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_PROTOCOL_INTERFACE_PRESENC E, TpSvcProtocolInterfacePresence)) (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_PROTOCOL_INTERFACE_PRESENC E, TpSvcProtocolInterfacePresence))
#define TP_IS_SVC_PROTOCOL_INTERFACE_PRESENCE(obj) \ #define TP_IS_SVC_PROTOCOL_INTERFACE_PRESENCE(obj) \
 End of changes. 1 change blocks. 
0 lines changed or deleted 19 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/