| dbus-properties-mixin.h | | dbus-properties-mixin.h | |
| | | | |
| skipping to change at line 59 | | skipping to change at line 59 | |
| typedef struct { | | typedef struct { | |
| GQuark dbus_interface; | | GQuark dbus_interface; | |
| TpDBusPropertiesMixinPropInfo *props; | | TpDBusPropertiesMixinPropInfo *props; | |
| /*<private>*/ | | /*<private>*/ | |
| 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); | |
|
| | | TpDBusPropertiesMixinIfaceInfo *tp_svc_interface_get_dbus_properties_info ( | |
| | | GType g_interface); | |
| | | | |
| /* ---- Concrete implementation (in GObject subclasses) ------------- */ | | /* ---- Concrete implementation (in GObject subclasses) ------------- */ | |
| | | | |
| typedef void (*TpDBusPropertiesMixinGetter) (GObject *object, | | typedef void (*TpDBusPropertiesMixinGetter) (GObject *object, | |
| GQuark iface, 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 iface, 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, | |
| | | | |
| skipping to change at line 125 | | skipping to change at line 127 | |
| void tp_dbus_properties_mixin_implement_interface (GObjectClass *cls, | | void tp_dbus_properties_mixin_implement_interface (GObjectClass *cls, | |
| GQuark iface, TpDBusPropertiesMixinGetter getter, | | GQuark iface, TpDBusPropertiesMixinGetter getter, | |
| TpDBusPropertiesMixinSetter setter, TpDBusPropertiesMixinPropImpl *prop
s); | | TpDBusPropertiesMixinSetter setter, TpDBusPropertiesMixinPropImpl *prop
s); | |
| | | | |
| void tp_dbus_properties_mixin_iface_init (gpointer g_iface, | | void tp_dbus_properties_mixin_iface_init (gpointer g_iface, | |
| gpointer iface_data); | | gpointer iface_data); | |
| | | | |
| gboolean tp_dbus_properties_mixin_get (GObject *self, | | gboolean tp_dbus_properties_mixin_get (GObject *self, | |
| const gchar *interface_name, const gchar *property_name, | | const gchar *interface_name, const gchar *property_name, | |
| GValue *value, GError **error); | | GValue *value, GError **error); | |
|
| | | gboolean tp_dbus_properties_mixin_set ( | |
| | | GObject *self, | |
| | | const gchar *interface_name, | |
| | | const gchar *property_name, | |
| | | const GValue *value, | |
| | | GError **error); | |
| | | | |
| GHashTable *tp_dbus_properties_mixin_make_properties_hash ( | | GHashTable *tp_dbus_properties_mixin_make_properties_hash ( | |
| GObject *object, const gchar *first_interface, | | GObject *object, const gchar *first_interface, | |
| const gchar *first_property, ...) | | const gchar *first_property, ...) | |
| G_GNUC_NULL_TERMINATED G_GNUC_WARN_UNUSED_RESULT; | | G_GNUC_NULL_TERMINATED G_GNUC_WARN_UNUSED_RESULT; | |
| | | | |
| void tp_dbus_properties_mixin_fill_properties_hash (GObject *object, | | void tp_dbus_properties_mixin_fill_properties_hash (GObject *object, | |
| GHashTable *table, | | GHashTable *table, | |
| const gchar *first_interface, | | const gchar *first_interface, | |
| const gchar *first_property, | | const gchar *first_property, | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 8 lines changed or added | |
|
| telepathy-interfaces.h | | telepathy-interfaces.h | |
| | | | |
| skipping to change at line 827 | | skipping to change at line 827 | |
| "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_ROOM \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Room2" | |
| | | | |
| | | #define TP_IFACE_QUARK_CHANNEL_INTERFACE_ROOM \ | |
| | | (tp_iface_quark_channel_interface_room ()) | |
| | | | |
| | | GQuark tp_iface_quark_channel_interface_room (void); | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_ROOM_NAME \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Room2.RoomName" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_SERVER \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Room2.Server" | |
| | | | |
| | | #define TP_IFACE_CHANNEL_INTERFACE_ROOM_CONFIG \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1" | |
| | | | |
| | | #define TP_IFACE_QUARK_CHANNEL_INTERFACE_ROOM_CONFIG \ | |
| | | (tp_iface_quark_channel_interface_room_config ()) | |
| | | | |
| | | GQuark tp_iface_quark_channel_interface_room_config (void); | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_ANONYMOUS \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Anonymous" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_INVITEONLY \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.InviteOnly" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_LIMIT \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Limit" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_MODERATED \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Moderated" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_TITLE \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Title" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_DESCRIPTION \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Description" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_PERSISTENT \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Persistent" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_PRIVATE \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Private" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_PASSWORD_PROTECTED \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.PasswordProtected" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_PASSWORD \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.Password" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_CAN_UPDATE_CONFIGURATION \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.CanUpdateConfigura | |
| | | tion" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_MUTABLE_PROPERTIES \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.MutableProperties" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_ROOM_CONFIG_CONFIGURATION_RETRIEVED \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.RoomConfig1.ConfigurationRetri | |
| | | eved" | |
| | | | |
| #define TP_IFACE_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | | #define TP_IFACE_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | |
| "org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication" | | "org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication" | |
| | | | |
| #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | | #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | |
| (tp_iface_quark_channel_interface_sasl_authentication ()) | | (tp_iface_quark_channel_interface_sasl_authentication ()) | |
| | | | |
| GQuark tp_iface_quark_channel_interface_sasl_authentication (void); | | GQuark tp_iface_quark_channel_interface_sasl_authentication (void); | |
| | | | |
| #define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_AVAILABLE_MECHANISMS
\ | | #define TP_PROP_CHANNEL_INTERFACE_SASL_AUTHENTICATION_AVAILABLE_MECHANISMS
\ | |
| "org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.AvailableMe
chanisms" | | "org.freedesktop.Telepathy.Channel.Interface.SASLAuthentication.AvailableMe
chanisms" | |
| | | | |
| skipping to change at line 893 | | skipping to change at line 954 | |
| (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" | |
| | | | |
| #define TP_PROP_CHANNEL_INTERFACE_SERVICE_POINT_CURRENT_SERVICE_POINT \ | | #define TP_PROP_CHANNEL_INTERFACE_SERVICE_POINT_CURRENT_SERVICE_POINT \ | |
| "org.freedesktop.Telepathy.Channel.Interface.ServicePoint.CurrentServicePoi
nt" | | "org.freedesktop.Telepathy.Channel.Interface.ServicePoint.CurrentServicePoi
nt" | |
| | | | |
|
| | | #define TP_IFACE_CHANNEL_INTERFACE_SUBJECT \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2" | |
| | | | |
| | | #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SUBJECT \ | |
| | | (tp_iface_quark_channel_interface_subject ()) | |
| | | | |
| | | GQuark tp_iface_quark_channel_interface_subject (void); | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_SUBJECT_SUBJECT \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2.Subject" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_SUBJECT_ACTOR \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2.Actor" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_SUBJECT_ACTOR_HANDLE \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2.ActorHandle" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_SUBJECT_TIMESTAMP \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2.Timestamp" | |
| | | | |
| | | #define TP_PROP_CHANNEL_INTERFACE_SUBJECT_CAN_SET \ | |
| | | "org.freedesktop.Telepathy.Channel.Interface.Subject2.CanSet" | |
| | | | |
| #define TP_IFACE_CHANNEL_INTERFACE_SMS \ | | #define TP_IFACE_CHANNEL_INTERFACE_SMS \ | |
| "org.freedesktop.Telepathy.Channel.Interface.SMS" | | "org.freedesktop.Telepathy.Channel.Interface.SMS" | |
| | | | |
| #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SMS \ | | #define TP_IFACE_QUARK_CHANNEL_INTERFACE_SMS \ | |
| (tp_iface_quark_channel_interface_sms ()) | | (tp_iface_quark_channel_interface_sms ()) | |
| | | | |
| GQuark tp_iface_quark_channel_interface_sms (void); | | GQuark tp_iface_quark_channel_interface_sms (void); | |
| | | | |
| #define TP_PROP_CHANNEL_INTERFACE_SMS_FLASH \ | | #define TP_PROP_CHANNEL_INTERFACE_SMS_FLASH \ | |
| "org.freedesktop.Telepathy.Channel.Interface.SMS.Flash" | | "org.freedesktop.Telepathy.Channel.Interface.SMS.Flash" | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 86 lines changed or added | |
|
| tp-cli-channel.h | | tp-cli-channel.h | |
| | | | |
| skipping to change at line 823 | | skipping to change at line 823 | |
| | | | |
| #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_room_config_callback_for_update_con | |
| | | figuration) (TpChannel *proxy, | |
| | | const GError *error, gpointer user_data, | |
| | | GObject *weak_object); | |
| | | | |
| | | TpProxyPendingCall *tp_cli_channel_interface_room_config_call_update_config | |
| | | uration (TpChannel *proxy, | |
| | | gint timeout_ms, | |
| | | GHashTable *in_Properties, | |
| | | tp_cli_channel_interface_room_config_callback_for_update_configuration | |
| | | callback, | |
| | | gpointer user_data, | |
| | | GDestroyNotify destroy, | |
| | | GObject *weak_object); | |
| | | | |
| typedef void (*tp_cli_channel_interface_sasl_authentication_signal_callback
_sasl_status_changed) (TpChannel *proxy, | | typedef void (*tp_cli_channel_interface_sasl_authentication_signal_callback
_sasl_status_changed) (TpChannel *proxy, | |
| guint arg_Status, | | guint arg_Status, | |
| const gchar *arg_Reason, | | const gchar *arg_Reason, | |
| GHashTable *arg_Details, | | GHashTable *arg_Details, | |
| gpointer user_data, GObject *weak_object); | | gpointer user_data, GObject *weak_object); | |
| TpProxySignalConnection *tp_cli_channel_interface_sasl_authentication_conne
ct_to_sasl_status_changed (TpChannel *proxy, | | 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, | | tp_cli_channel_interface_sasl_authentication_signal_callback_sasl_statu
s_changed callback, | |
| gpointer user_data, | | gpointer user_data, | |
| GDestroyNotify destroy, | | GDestroyNotify destroy, | |
| GObject *weak_object, | | GObject *weak_object, | |
| | | | |
| skipping to change at line 993 | | skipping to change at line 1005 | |
| 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); | |
| | | | |
|
| | | typedef void (*tp_cli_channel_interface_subject_callback_for_set_subject) ( | |
| | | TpChannel *proxy, | |
| | | const GError *error, gpointer user_data, | |
| | | GObject *weak_object); | |
| | | | |
| | | TpProxyPendingCall *tp_cli_channel_interface_subject_call_set_subject (TpCh | |
| | | annel *proxy, | |
| | | gint timeout_ms, | |
| | | const gchar *in_Subject, | |
| | | tp_cli_channel_interface_subject_callback_for_set_subject callback, | |
| | | gpointer user_data, | |
| | | GDestroyNotify destroy, | |
| | | GObject *weak_object); | |
| | | | |
| typedef void (*tp_cli_channel_interface_tube_signal_callback_tube_channel_s
tate_changed) (TpChannel *proxy, | | typedef void (*tp_cli_channel_interface_tube_signal_callback_tube_channel_s
tate_changed) (TpChannel *proxy, | |
| guint arg_State, | | guint arg_State, | |
| gpointer user_data, GObject *weak_object); | | gpointer user_data, GObject *weak_object); | |
| TpProxySignalConnection *tp_cli_channel_interface_tube_connect_to_tube_chan
nel_state_changed (TpChannel *proxy, | | TpProxySignalConnection *tp_cli_channel_interface_tube_connect_to_tube_chan
nel_state_changed (TpChannel *proxy, | |
| tp_cli_channel_interface_tube_signal_callback_tube_channel_state_change
d callback, | | tp_cli_channel_interface_tube_signal_callback_tube_channel_state_change
d callback, | |
| gpointer user_data, | | gpointer user_data, | |
| GDestroyNotify destroy, | | GDestroyNotify destroy, | |
| GObject *weak_object, | | GObject *weak_object, | |
| GError **error); | | GError **error); | |
| | | | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 29 lines changed or added | |
|
| tp-svc-channel.h | | tp-svc-channel.h | |
| | | | |
| skipping to change at line 672 | | skipping to change at line 672 | |
| 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 _TpSvcChannelInterfaceRoom TpSvcChannelInterfaceRoom; | |
| | | | |
| | | typedef struct _TpSvcChannelInterfaceRoomClass TpSvcChannelInterfaceRoomCla | |
| | | ss; | |
| | | | |
| | | GType tp_svc_channel_interface_room_get_type (void); | |
| | | #define TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM \ | |
| | | (tp_svc_channel_interface_room_get_type ()) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_ROOM(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM, Tp | |
| | | SvcChannelInterfaceRoom)) | |
| | | #define TP_IS_SVC_CHANNEL_INTERFACE_ROOM(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM)) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_ROOM_GET_CLASS(obj) \ | |
| | | (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM, | |
| | | TpSvcChannelInterfaceRoomClass)) | |
| | | | |
| | | typedef struct _TpSvcChannelInterfaceRoomConfig TpSvcChannelInterfaceRoomCo | |
| | | nfig; | |
| | | | |
| | | typedef struct _TpSvcChannelInterfaceRoomConfigClass TpSvcChannelInterfaceR | |
| | | oomConfigClass; | |
| | | | |
| | | GType tp_svc_channel_interface_room_config_get_type (void); | |
| | | #define TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM_CONFIG \ | |
| | | (tp_svc_channel_interface_room_config_get_type ()) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_ROOM_CONFIG(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM_CON | |
| | | FIG, TpSvcChannelInterfaceRoomConfig)) | |
| | | #define TP_IS_SVC_CHANNEL_INTERFACE_ROOM_CONFIG(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM_CON | |
| | | FIG)) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_ROOM_CONFIG_GET_CLASS(obj) \ | |
| | | (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_ROOM_ | |
| | | CONFIG, TpSvcChannelInterfaceRoomConfigClass)) | |
| | | | |
| | | typedef void (*tp_svc_channel_interface_room_config_update_configuration_im | |
| | | pl) (TpSvcChannelInterfaceRoomConfig *self, | |
| | | GHashTable *in_Properties, | |
| | | DBusGMethodInvocation *context); | |
| | | void tp_svc_channel_interface_room_config_implement_update_configuration (T | |
| | | pSvcChannelInterfaceRoomConfigClass *klass, tp_svc_channel_interface_room_c | |
| | | onfig_update_configuration_impl impl); | |
| | | static inline | |
| | | /* this comment is to stop gtkdoc realising this is static */ | |
| | | void tp_svc_channel_interface_room_config_return_from_update_configuration | |
| | | (DBusGMethodInvocation *context); | |
| | | static inline void | |
| | | tp_svc_channel_interface_room_config_return_from_update_configuration (DBus | |
| | | GMethodInvocation *context) | |
| | | { | |
| | | dbus_g_method_return (context); | |
| | | } | |
| | | | |
| typedef struct _TpSvcChannelInterfaceSASLAuthentication TpSvcChannelInterfa
ceSASLAuthentication; | | typedef struct _TpSvcChannelInterfaceSASLAuthentication TpSvcChannelInterfa
ceSASLAuthentication; | |
| | | | |
| typedef struct _TpSvcChannelInterfaceSASLAuthenticationClass TpSvcChannelIn
terfaceSASLAuthenticationClass; | | typedef struct _TpSvcChannelInterfaceSASLAuthenticationClass TpSvcChannelIn
terfaceSASLAuthenticationClass; | |
| | | | |
| GType tp_svc_channel_interface_sasl_authentication_get_type (void); | | GType tp_svc_channel_interface_sasl_authentication_get_type (void); | |
| #define TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | | #define TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION \ | |
| (tp_svc_channel_interface_sasl_authentication_get_type ()) | | (tp_svc_channel_interface_sasl_authentication_get_type ()) | |
| #define TP_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \ | | #define TP_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \ | |
| (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUT
HENTICATION, TpSvcChannelInterfaceSASLAuthentication)) | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SASL_AUT
HENTICATION, TpSvcChannelInterfaceSASLAuthentication)) | |
| #define TP_IS_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \ | | #define TP_IS_SVC_CHANNEL_INTERFACE_SASL_AUTHENTICATION(obj) \ | |
| | | | |
| skipping to change at line 829 | | skipping to change at line 870 | |
| #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) \ | |
| (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_
POINT)) | | (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVICE_
POINT)) | |
| #define TP_SVC_CHANNEL_INTERFACE_SERVICE_POINT_GET_CLASS(obj) \ | | #define TP_SVC_CHANNEL_INTERFACE_SERVICE_POINT_GET_CLASS(obj) \ | |
| (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVI
CE_POINT, TpSvcChannelInterfaceServicePointClass)) | | (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SERVI
CE_POINT, TpSvcChannelInterfaceServicePointClass)) | |
| | | | |
| void tp_svc_channel_interface_service_point_emit_service_point_changed (gpo
inter instance, | | void tp_svc_channel_interface_service_point_emit_service_point_changed (gpo
inter instance, | |
| const GValueArray *arg_Service_Point); | | const GValueArray *arg_Service_Point); | |
| | | | |
|
| | | typedef struct _TpSvcChannelInterfaceSubject TpSvcChannelInterfaceSubject; | |
| | | | |
| | | typedef struct _TpSvcChannelInterfaceSubjectClass TpSvcChannelInterfaceSubj | |
| | | ectClass; | |
| | | | |
| | | GType tp_svc_channel_interface_subject_get_type (void); | |
| | | #define TP_TYPE_SVC_CHANNEL_INTERFACE_SUBJECT \ | |
| | | (tp_svc_channel_interface_subject_get_type ()) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_SUBJECT(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SUBJECT, | |
| | | TpSvcChannelInterfaceSubject)) | |
| | | #define TP_IS_SVC_CHANNEL_INTERFACE_SUBJECT(obj) \ | |
| | | (G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SUBJECT) | |
| | | ) | |
| | | #define TP_SVC_CHANNEL_INTERFACE_SUBJECT_GET_CLASS(obj) \ | |
| | | (G_TYPE_INSTANCE_GET_INTERFACE((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_SUBJE | |
| | | CT, TpSvcChannelInterfaceSubjectClass)) | |
| | | | |
| | | typedef void (*tp_svc_channel_interface_subject_set_subject_impl) (TpSvcCha | |
| | | nnelInterfaceSubject *self, | |
| | | const gchar *in_Subject, | |
| | | DBusGMethodInvocation *context); | |
| | | void tp_svc_channel_interface_subject_implement_set_subject (TpSvcChannelIn | |
| | | terfaceSubjectClass *klass, tp_svc_channel_interface_subject_set_subject_im | |
| | | pl impl); | |
| | | static inline | |
| | | /* this comment is to stop gtkdoc realising this is static */ | |
| | | void tp_svc_channel_interface_subject_return_from_set_subject (DBusGMethodI | |
| | | nvocation *context); | |
| | | static inline void | |
| | | tp_svc_channel_interface_subject_return_from_set_subject (DBusGMethodInvoca | |
| | | tion *context) | |
| | | { | |
| | | dbus_g_method_return (context); | |
| | | } | |
| | | | |
| typedef struct _TpSvcChannelInterfaceTube TpSvcChannelInterfaceTube; | | typedef struct _TpSvcChannelInterfaceTube TpSvcChannelInterfaceTube; | |
| | | | |
| typedef struct _TpSvcChannelInterfaceTubeClass TpSvcChannelInterfaceTubeCla
ss; | | typedef struct _TpSvcChannelInterfaceTubeClass TpSvcChannelInterfaceTubeCla
ss; | |
| | | | |
| GType tp_svc_channel_interface_tube_get_type (void); | | GType tp_svc_channel_interface_tube_get_type (void); | |
| #define TP_TYPE_SVC_CHANNEL_INTERFACE_TUBE \ | | #define TP_TYPE_SVC_CHANNEL_INTERFACE_TUBE \ | |
| (tp_svc_channel_interface_tube_get_type ()) | | (tp_svc_channel_interface_tube_get_type ()) | |
| #define TP_SVC_CHANNEL_INTERFACE_TUBE(obj) \ | | #define TP_SVC_CHANNEL_INTERFACE_TUBE(obj) \ | |
| (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_TUBE, Tp
SvcChannelInterfaceTube)) | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_SVC_CHANNEL_INTERFACE_TUBE, Tp
SvcChannelInterfaceTube)) | |
| #define TP_IS_SVC_CHANNEL_INTERFACE_TUBE(obj) \ | | #define TP_IS_SVC_CHANNEL_INTERFACE_TUBE(obj) \ | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 90 lines changed or added | |
|