account-channel-request.h   account-channel-request.h 
skipping to change at line 30 skipping to change at line 30
#ifndef __TP_ACCOUNT_CHANNEL_REQUEST_H__ #ifndef __TP_ACCOUNT_CHANNEL_REQUEST_H__
#define __TP_ACCOUNT_CHANNEL_REQUEST_H__ #define __TP_ACCOUNT_CHANNEL_REQUEST_H__
#include <gio/gio.h> #include <gio/gio.h>
#include <glib-object.h> #include <glib-object.h>
#include <glib.h> #include <glib.h>
#include <telepathy-glib/account.h> #include <telepathy-glib/account.h>
#include <telepathy-glib/channel.h> #include <telepathy-glib/channel.h>
#include <telepathy-glib/client-channel-factory.h>
#include <telepathy-glib/handle-channels-context.h> #include <telepathy-glib/handle-channels-context.h>
G_BEGIN_DECLS G_BEGIN_DECLS
typedef struct _TpAccountChannelRequest TpAccountChannelRequest; typedef struct _TpAccountChannelRequest TpAccountChannelRequest;
typedef struct _TpAccountChannelRequestClass \ typedef struct _TpAccountChannelRequestClass \
TpAccountChannelRequestClass; TpAccountChannelRequestClass;
typedef struct _TpAccountChannelRequestPrivate \ typedef struct _TpAccountChannelRequestPrivate \
TpAccountChannelRequestPrivate; TpAccountChannelRequestPrivate;
skipping to change at line 72 skipping to change at line 73
TpAccount * tp_account_channel_request_get_account ( TpAccount * tp_account_channel_request_get_account (
TpAccountChannelRequest *self); TpAccountChannelRequest *self);
GHashTable * tp_account_channel_request_get_request ( GHashTable * tp_account_channel_request_get_request (
TpAccountChannelRequest *self); TpAccountChannelRequest *self);
gint64 tp_account_channel_request_get_user_action_time ( gint64 tp_account_channel_request_get_user_action_time (
TpAccountChannelRequest *self); TpAccountChannelRequest *self);
void tp_account_channel_request_set_channel_factory (
TpAccountChannelRequest *self,
TpClientChannelFactoryInterface *factory);
/* Request and handle API */ /* Request and handle API */
void tp_account_channel_request_create_and_handle_channel_async ( void tp_account_channel_request_create_and_handle_channel_async (
TpAccountChannelRequest *self, TpAccountChannelRequest *self,
GCancellable *cancellable, GCancellable *cancellable,
GAsyncReadyCallback callback, GAsyncReadyCallback callback,
gpointer user_data); gpointer user_data);
TpChannel * tp_account_channel_request_create_and_handle_channel_finish ( TpChannel * tp_account_channel_request_create_and_handle_channel_finish (
TpAccountChannelRequest *self, TpAccountChannelRequest *self,
 End of changes. 2 change blocks. 
0 lines changed or deleted 5 lines changed or added


 account.h   account.h 
skipping to change at line 72 skipping to change at line 72
#define TP_IS_ACCOUNT(obj) \ #define TP_IS_ACCOUNT(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_ACCOUNT)) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TP_TYPE_ACCOUNT))
#define TP_IS_ACCOUNT_CLASS(klass) \ #define TP_IS_ACCOUNT_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_ACCOUNT)) (G_TYPE_CHECK_CLASS_TYPE ((klass), TP_TYPE_ACCOUNT))
#define TP_ACCOUNT_GET_CLASS(obj) \ #define TP_ACCOUNT_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_ACCOUNT, \ (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_ACCOUNT, \
TpAccountClass)) TpAccountClass))
#define TP_ACCOUNT_FEATURE_CORE \ #define TP_ACCOUNT_FEATURE_CORE \
tp_account_get_feature_quark_core () tp_account_get_feature_quark_core ()
#define TP_ACCOUNT_FEATURE_STORAGE \
tp_account_get_feature_quark_storage ()
GQuark tp_account_get_feature_quark_core (void) G_GNUC_CONST; GQuark tp_account_get_feature_quark_core (void) G_GNUC_CONST;
GQuark tp_account_get_feature_quark_storage (void) G_GNUC_CONST;
TpAccount *tp_account_new (TpDBusDaemon *bus_daemon, const gchar *object_pa th, TpAccount *tp_account_new (TpDBusDaemon *bus_daemon, const gchar *object_pa th,
GError **error) G_GNUC_WARN_UNUSED_RESULT; GError **error) G_GNUC_WARN_UNUSED_RESULT;
gboolean tp_account_parse_object_path (const gchar *object_path, gboolean tp_account_parse_object_path (const gchar *object_path,
gchar **cm, gchar **protocol, gchar **account_id, GError **error); gchar **cm, gchar **protocol, gchar **account_id, GError **error);
void tp_account_init_known_interfaces (void); void tp_account_init_known_interfaces (void);
TpConnection *tp_account_get_connection (TpAccount *account); TpConnection *tp_account_get_connection (TpAccount *account);
skipping to change at line 214 skipping to change at line 217
const gchar *mime_type, const gchar *mime_type,
GAsyncReadyCallback callback, GAsyncReadyCallback callback,
gpointer user_data); gpointer user_data);
gboolean tp_account_set_avatar_finish (TpAccount *self, gboolean tp_account_set_avatar_finish (TpAccount *self,
GAsyncResult *result, GAsyncResult *result,
GError **error); GError **error);
gboolean tp_account_get_changing_presence (TpAccount *self); gboolean tp_account_get_changing_presence (TpAccount *self);
const gchar *tp_account_get_storage_provider (TpAccount *self);
const GValue *tp_account_get_storage_identifier (TpAccount *self);
TpStorageRestrictionFlags tp_account_get_storage_restrictions (TpAccount *s
elf);
void tp_account_get_storage_specific_information_async (TpAccount *self,
GAsyncReadyCallback callback, gpointer user_data);
GHashTable *tp_account_get_storage_specific_information_finish (TpAccount *
self,
GAsyncResult *result, GError **error);
G_END_DECLS G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-account.h> #include <telepathy-glib/_gen/tp-cli-account.h>
#endif #endif
 End of changes. 3 change blocks. 
0 lines changed or deleted 13 lines changed or added


 base-client.h   base-client.h 
skipping to change at line 30 skipping to change at line 30
#ifndef __TP_BASE_CLIENT_H__ #ifndef __TP_BASE_CLIENT_H__
#define __TP_BASE_CLIENT_H__ #define __TP_BASE_CLIENT_H__
#include <dbus/dbus-glib.h> #include <dbus/dbus-glib.h>
#include <glib-object.h> #include <glib-object.h>
#include <telepathy-glib/account.h> #include <telepathy-glib/account.h>
#include <telepathy-glib/account-manager.h> #include <telepathy-glib/account-manager.h>
#include <telepathy-glib/add-dispatch-operation-context.h> #include <telepathy-glib/add-dispatch-operation-context.h>
#include <telepathy-glib/client-channel-factory.h>
#include <telepathy-glib/handle-channels-context.h> #include <telepathy-glib/handle-channels-context.h>
#include <telepathy-glib/observe-channels-context.h> #include <telepathy-glib/observe-channels-context.h>
#include <telepathy-glib/channel-dispatch-operation.h> #include <telepathy-glib/channel-dispatch-operation.h>
#include <telepathy-glib/connection.h> #include <telepathy-glib/connection.h>
#include <telepathy-glib/dbus.h> #include <telepathy-glib/dbus.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/dbus-properties-mixin.h> #include <telepathy-glib/dbus-properties-mixin.h>
G_BEGIN_DECLS G_BEGIN_DECLS
skipping to change at line 151 skipping to change at line 152
void tp_base_client_add_channel_features (TpBaseClient *self, void tp_base_client_add_channel_features (TpBaseClient *self,
const GQuark *features, gssize n); const GQuark *features, gssize n);
void tp_base_client_add_channel_features_varargs (TpBaseClient *self, void tp_base_client_add_channel_features_varargs (TpBaseClient *self,
GQuark feature, ...); GQuark feature, ...);
void tp_base_client_add_connection_features (TpBaseClient *self, void tp_base_client_add_connection_features (TpBaseClient *self,
const GQuark *features, gssize n); const GQuark *features, gssize n);
void tp_base_client_add_connection_features_varargs (TpBaseClient *self, void tp_base_client_add_connection_features_varargs (TpBaseClient *self,
GQuark feature, ...); GQuark feature, ...);
void tp_base_client_set_channel_factory (TpBaseClient *self,
TpClientChannelFactoryInterface *factory);
TpClientChannelFactoryInterface * tp_base_client_get_channel_factory (
TpBaseClient *self);
/* future, potentially (currently in spec as a draft): /* future, potentially (currently in spec as a draft):
void tp_base_client_set_handler_related_conferences_bypass_approval ( void tp_base_client_set_handler_related_conferences_bypass_approval (
TpBaseClient *self, gboolean bypass_approval); TpBaseClient *self, gboolean bypass_approval);
*/ */
gboolean tp_base_client_register (TpBaseClient *self, gboolean tp_base_client_register (TpBaseClient *self,
GError **error); GError **error);
/* Normal methods, can be called at any time */ /* Normal methods, can be called at any time */
 End of changes. 2 change blocks. 
0 lines changed or deleted 7 lines changed or added


 error-str.h   error-str.h 
skipping to change at line 44 skipping to change at line 44
#define TP_ERROR_STR_CONNECTION_REFUSED "org.freedesktop.Telepathy.Error.Co nnectionRefused" #define TP_ERROR_STR_CONNECTION_REFUSED "org.freedesktop.Telepathy.Error.Co nnectionRefused"
#define TP_ERROR_STR_CONNECTION_FAILED "org.freedesktop.Telepathy.Error.Con nectionFailed" #define TP_ERROR_STR_CONNECTION_FAILED "org.freedesktop.Telepathy.Error.Con nectionFailed"
#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"
 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 86 skipping to change at line 86
TP_ERROR_ALREADY_CONNECTED, /*< nick=AlreadyConnected >*/ TP_ERROR_ALREADY_CONNECTED, /*< nick=AlreadyConnected >*/
TP_ERROR_CONNECTION_REPLACED, /*< nick=ConnectionReplaced >*/ TP_ERROR_CONNECTION_REPLACED, /*< nick=ConnectionReplaced >*/
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 >*/
} 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 1 lines changed or added


 gnio-util.h   gnio-util.h 
skipping to change at line 24 skipping to change at line 24
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 U SA
*/ */
#include <glib-object.h> #include <glib-object.h>
#include <gio/gio.h> #include <gio/gio.h>
#include <telepathy-glib/enums.h> #include <telepathy-glib/enums.h>
#ifndef __TP_GNIO_UTIL_H__ #ifndef __TP_GNIO_UTIL_H__
#define __TP_GNIO_UTIL_H__ #define __TP_GNIO_UTIL_H__
G_BEGIN_DECLS G_BEGIN_DECLS
GSocketAddress *tp_g_socket_address_from_variant (TpSocketAddressType type, GSocketAddress *tp_g_socket_address_from_variant (TpSocketAddressType type,
const GValue *variant, const GValue *variant,
GError **error) G_GNUC_WARN_UNUSED_RESULT; GError **error) G_GNUC_WARN_UNUSED_RESULT;
GValue *tp_address_variant_from_g_socket_address (GSocketAddress *address, GValue *tp_address_variant_from_g_socket_address (GSocketAddress *address,
TpSocketAddressType *type, TpSocketAddressType *type,
GError **error) G_GNUC_WARN_UNUSED_RESULT; GError **error) G_GNUC_WARN_UNUSED_RESULT;
gboolean tp_unix_connection_send_credentials_with_byte (
GSocketConnection *connection,
guchar byte,
GCancellable *cancellable,
GError **error);
GCredentials * tp_unix_connection_receive_credentials_with_byte (
GSocketConnection *connection,
guchar *byte,
GCancellable *cancellable,
GError **error);
G_END_DECLS G_END_DECLS
#endif /* __TP_GNIO_UTIL_H__ */ #endif /* __TP_GNIO_UTIL_H__ */
 End of changes. 2 change blocks. 
0 lines changed or deleted 13 lines changed or added


 telepathy-glib.h   telepathy-glib.h 
skipping to change at line 35 skipping to change at line 35
#include <telepathy-glib/interfaces.h> #include <telepathy-glib/interfaces.h>
#include <telepathy-glib/gtypes.h> #include <telepathy-glib/gtypes.h>
#include <telepathy-glib/enums.h> #include <telepathy-glib/enums.h>
#include <telepathy-glib/errors.h> #include <telepathy-glib/errors.h>
#include <telepathy-glib/util.h> #include <telepathy-glib/util.h>
#include <telepathy-glib/gnio-util.h> #include <telepathy-glib/gnio-util.h>
#include <telepathy-glib/defs.h> #include <telepathy-glib/defs.h>
#include <telepathy-glib/intset.h> #include <telepathy-glib/intset.h>
#include <telepathy-glib/heap.h> #include <telepathy-glib/heap.h>
#include <telepathy-glib/base-client.h>
#include <telepathy-glib/proxy.h>
#include <telepathy-glib/dbus.h>
#include <telepathy-glib/channel.h>
#include <telepathy-glib/connection.h>
#include <telepathy-glib/connection-manager.h>
#include <telepathy-glib/account.h>
#include <telepathy-glib/account-channel-request.h> #include <telepathy-glib/account-channel-request.h>
#include <telepathy-glib/account-manager.h> #include <telepathy-glib/account-manager.h>
#include <telepathy-glib/channel-dispatcher.h> #include <telepathy-glib/account.h>
#include <telepathy-glib/automatic-proxy-factory.h>
#include <telepathy-glib/base-client.h>
#include <telepathy-glib/basic-proxy-factory.h>
#include <telepathy-glib/channel-dispatch-operation.h> #include <telepathy-glib/channel-dispatch-operation.h>
#include <telepathy-glib/channel-dispatcher.h>
#include <telepathy-glib/channel-request.h> #include <telepathy-glib/channel-request.h>
#include <telepathy-glib/handle.h> #include <telepathy-glib/channel.h>
#include <telepathy-glib/client-channel-factory.h>
#include <telepathy-glib/connection-manager.h>
#include <telepathy-glib/connection.h>
#include <telepathy-glib/contact.h> #include <telepathy-glib/contact.h>
#include <telepathy-glib/dbus.h>
#include <telepathy-glib/debug.h> #include <telepathy-glib/debug.h>
#include <telepathy-glib/handle.h>
#include <telepathy-glib/proxy.h>
#include <telepathy-glib/simple-approver.h> #include <telepathy-glib/simple-approver.h>
#include <telepathy-glib/simple-handler.h> #include <telepathy-glib/simple-handler.h>
#include <telepathy-glib/simple-observer.h> #include <telepathy-glib/simple-observer.h>
#include <telepathy-glib/stream-tube-channel.h>
#include <telepathy-glib/stream-tube-connection.h>
#include <telepathy-glib/svc-generic.h> #include <telepathy-glib/svc-generic.h>
#include <telepathy-glib/svc-client.h> #include <telepathy-glib/svc-client.h>
#undef __TP_IN_GLIB_H__ #undef __TP_IN_GLIB_H__
#endif /* __TP_GLIB_H__ */ #endif /* __TP_GLIB_H__ */
 End of changes. 7 change blocks. 
9 lines changed or deleted 14 lines changed or added


 tp-cli-media-stream-handler.h   tp-cli-media-stream-handler.h 
skipping to change at line 94 skipping to change at line 94
typedef void (*tp_cli_media_stream_handler_signal_callback_start_telephony_ event) (TpMediaStreamHandler *proxy, typedef void (*tp_cli_media_stream_handler_signal_callback_start_telephony_ event) (TpMediaStreamHandler *proxy,
guchar arg_Event, guchar arg_Event,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_start_telep hony_event (TpMediaStreamHandler *proxy, TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_start_telep hony_event (TpMediaStreamHandler *proxy,
tp_cli_media_stream_handler_signal_callback_start_telephony_event callb ack, tp_cli_media_stream_handler_signal_callback_start_telephony_event callb ack,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
typedef void (*tp_cli_media_stream_handler_signal_callback_start_named_tele
phony_event) (TpMediaStreamHandler *proxy,
guchar arg_Event,
guint arg_Codec_ID,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_start_named
_telephony_event (TpMediaStreamHandler *proxy,
tp_cli_media_stream_handler_signal_callback_start_named_telephony_event
callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_media_stream_handler_signal_callback_start_sound_tele
phony_event) (TpMediaStreamHandler *proxy,
guchar arg_Event,
gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_start_sound
_telephony_event (TpMediaStreamHandler *proxy,
tp_cli_media_stream_handler_signal_callback_start_sound_telephony_event
callback,
gpointer user_data,
GDestroyNotify destroy,
GObject *weak_object,
GError **error);
typedef void (*tp_cli_media_stream_handler_signal_callback_stop_telephony_e vent) (TpMediaStreamHandler *proxy, typedef void (*tp_cli_media_stream_handler_signal_callback_stop_telephony_e vent) (TpMediaStreamHandler *proxy,
gpointer user_data, GObject *weak_object); gpointer user_data, GObject *weak_object);
TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_stop_teleph ony_event (TpMediaStreamHandler *proxy, TpProxySignalConnection *tp_cli_media_stream_handler_connect_to_stop_teleph ony_event (TpMediaStreamHandler *proxy,
tp_cli_media_stream_handler_signal_callback_stop_telephony_event callba ck, tp_cli_media_stream_handler_signal_callback_stop_telephony_event callba ck,
gpointer user_data, gpointer user_data,
GDestroyNotify destroy, GDestroyNotify destroy,
GObject *weak_object, GObject *weak_object,
GError **error); GError **error);
typedef void (*tp_cli_media_stream_handler_signal_callback_set_stream_held) (TpMediaStreamHandler *proxy, typedef void (*tp_cli_media_stream_handler_signal_callback_set_stream_held) (TpMediaStreamHandler *proxy,
 End of changes. 1 change blocks. 
0 lines changed or deleted 27 lines changed or added


 tp-svc-media-stream-handler.h   tp-svc-media-stream-handler.h 
skipping to change at line 197 skipping to change at line 197
void tp_svc_media_stream_handler_emit_set_remote_candidate_list (gpointer i nstance, void tp_svc_media_stream_handler_emit_set_remote_candidate_list (gpointer i nstance,
const GPtrArray *arg_Remote_Candidates); const GPtrArray *arg_Remote_Candidates);
void tp_svc_media_stream_handler_emit_set_remote_codecs (gpointer instance, void tp_svc_media_stream_handler_emit_set_remote_codecs (gpointer instance,
const GPtrArray *arg_Codecs); const GPtrArray *arg_Codecs);
void tp_svc_media_stream_handler_emit_set_stream_playing (gpointer instance , void tp_svc_media_stream_handler_emit_set_stream_playing (gpointer instance ,
gboolean arg_Playing); gboolean arg_Playing);
void tp_svc_media_stream_handler_emit_set_stream_sending (gpointer instance , void tp_svc_media_stream_handler_emit_set_stream_sending (gpointer instance ,
gboolean arg_Sending); gboolean arg_Sending);
void tp_svc_media_stream_handler_emit_start_telephony_event (gpointer insta nce, void tp_svc_media_stream_handler_emit_start_telephony_event (gpointer insta nce,
guchar arg_Event); guchar arg_Event);
void tp_svc_media_stream_handler_emit_start_named_telephony_event (gpointer
instance,
guchar arg_Event,
guint arg_Codec_ID);
void tp_svc_media_stream_handler_emit_start_sound_telephony_event (gpointer
instance,
guchar arg_Event);
void tp_svc_media_stream_handler_emit_stop_telephony_event (gpointer instan ce); void tp_svc_media_stream_handler_emit_stop_telephony_event (gpointer instan ce);
void tp_svc_media_stream_handler_emit_set_stream_held (gpointer instance, void tp_svc_media_stream_handler_emit_set_stream_held (gpointer instance,
gboolean arg_Held); gboolean arg_Held);
G_END_DECLS G_END_DECLS
 End of changes. 1 change blocks. 
0 lines changed or deleted 7 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/