| base-channel.h | | base-channel.h | |
| | | | |
| skipping to change at line 84 | | skipping to change at line 84 | |
| /*< private >*/ | | /*< private >*/ | |
| GObject parent; | | GObject parent; | |
| | | | |
| TpBaseChannelPrivate *priv; | | TpBaseChannelPrivate *priv; | |
| }; | | }; | |
| | | | |
| void tp_base_channel_register (TpBaseChannel *chan); | | void tp_base_channel_register (TpBaseChannel *chan); | |
| void tp_base_channel_close (TpBaseChannel *chan); | | void tp_base_channel_close (TpBaseChannel *chan); | |
| void tp_base_channel_destroyed (TpBaseChannel *chan); | | void tp_base_channel_destroyed (TpBaseChannel *chan); | |
| void tp_base_channel_reopened (TpBaseChannel *chan, TpHandle initiator); | | void tp_base_channel_reopened (TpBaseChannel *chan, TpHandle initiator); | |
|
| | | _TP_AVAILABLE_IN_0_20 | |
| | | void tp_base_channel_disappear (TpBaseChannel *chan); | |
| | | _TP_AVAILABLE_IN_0_20 | |
| | | void tp_base_channel_reopened_with_requested (TpBaseChannel *chan, | |
| | | gboolean requested, TpHandle initiator); | |
| | | | |
| const gchar *tp_base_channel_get_object_path (TpBaseChannel *chan); | | const gchar *tp_base_channel_get_object_path (TpBaseChannel *chan); | |
| TpBaseConnection *tp_base_channel_get_connection (TpBaseChannel *chan); | | TpBaseConnection *tp_base_channel_get_connection (TpBaseChannel *chan); | |
| _TP_AVAILABLE_IN_0_18 | | _TP_AVAILABLE_IN_0_18 | |
| TpHandle tp_base_channel_get_self_handle (TpBaseChannel *chan); | | TpHandle tp_base_channel_get_self_handle (TpBaseChannel *chan); | |
| TpHandle tp_base_channel_get_target_handle (TpBaseChannel *chan); | | TpHandle tp_base_channel_get_target_handle (TpBaseChannel *chan); | |
| TpHandle tp_base_channel_get_initiator (TpBaseChannel *chan); | | TpHandle tp_base_channel_get_initiator (TpBaseChannel *chan); | |
| gboolean tp_base_channel_is_requested (TpBaseChannel *chan); | | gboolean tp_base_channel_is_requested (TpBaseChannel *chan); | |
| gboolean tp_base_channel_is_registered (TpBaseChannel *chan); | | gboolean tp_base_channel_is_registered (TpBaseChannel *chan); | |
| gboolean tp_base_channel_is_destroyed (TpBaseChannel *chan); | | gboolean tp_base_channel_is_destroyed (TpBaseChannel *chan); | |
|
| | | _TP_AVAILABLE_IN_0_20 | |
| | | gboolean tp_base_channel_is_respawning (TpBaseChannel *chan); | |
| | | | |
| GType tp_base_channel_get_type (void); | | GType tp_base_channel_get_type (void); | |
| | | | |
| /* TYPE MACROS */ | | /* TYPE MACROS */ | |
| #define TP_TYPE_BASE_CHANNEL \ | | #define TP_TYPE_BASE_CHANNEL \ | |
| (tp_base_channel_get_type ()) | | (tp_base_channel_get_type ()) | |
| #define TP_BASE_CHANNEL(obj) \ | | #define TP_BASE_CHANNEL(obj) \ | |
| (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_BASE_CHANNEL, \ | | (G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_BASE_CHANNEL, \ | |
| TpBaseChannel)) | | TpBaseChannel)) | |
| #define TP_BASE_CHANNEL_CLASS(klass) \ | | #define TP_BASE_CHANNEL_CLASS(klass) \ | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 7 lines changed or added | |
|
| base-connection.h | | base-connection.h | |
| | | | |
| skipping to change at line 41 | | skipping to change at line 41 | |
| | | | |
| #include <telepathy-glib/channel-manager.h> | | #include <telepathy-glib/channel-manager.h> | |
| #include <telepathy-glib/defs.h> | | #include <telepathy-glib/defs.h> | |
| #include <telepathy-glib/enums.h> | | #include <telepathy-glib/enums.h> | |
| #include <telepathy-glib/handle-repo.h> | | #include <telepathy-glib/handle-repo.h> | |
| #include <telepathy-glib/proxy.h> | | #include <telepathy-glib/proxy.h> | |
| #include <telepathy-glib/svc-connection.h> | | #include <telepathy-glib/svc-connection.h> | |
| | | | |
| G_BEGIN_DECLS | | G_BEGIN_DECLS | |
| | | | |
|
| typedef struct _TpBaseConnection TpBaseConnection; | | /* The TpBaseConnection typedef is forward-declared in handle-repo.h */ | |
| typedef struct _TpBaseConnectionClass TpBaseConnectionClass; | | typedef struct _TpBaseConnectionClass TpBaseConnectionClass; | |
| typedef struct _TpBaseConnectionPrivate TpBaseConnectionPrivate; | | typedef struct _TpBaseConnectionPrivate TpBaseConnectionPrivate; | |
| | | | |
| typedef void (*TpBaseConnectionProc) (TpBaseConnection *self); | | typedef void (*TpBaseConnectionProc) (TpBaseConnection *self); | |
| | | | |
| typedef gboolean (*TpBaseConnectionStartConnectingImpl) ( | | typedef gboolean (*TpBaseConnectionStartConnectingImpl) ( | |
| TpBaseConnection *self, GError **error); | | TpBaseConnection *self, GError **error); | |
| | | | |
| typedef void (*TpBaseConnectionCreateHandleReposImpl) (TpBaseConnection *se
lf, | | typedef void (*TpBaseConnectionCreateHandleReposImpl) (TpBaseConnection *se
lf, | |
| TpHandleRepoIface *repos[TP_NUM_HANDLE_TYPES]); | | TpHandleRepoIface *repos[TP_NUM_HANDLE_TYPES]); | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|