diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-05-03 12:13:43 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-05-03 12:35:58 +0100 |
commit | 59e580c564711b194d3c0c8004cf8db195f06428 (patch) | |
tree | 557249305359a52023dd567fce571cdd53b027ac /telepathy-glib/debug-client.h | |
parent | f524ee716e4e2fdb959c1dd28210a3a8dfc6cbfe (diff) | |
download | telepathy-glib-59e580c564711b194d3c0c8004cf8db195f06428.tar.gz |
Version-annotate recent API
Diffstat (limited to 'telepathy-glib/debug-client.h')
-rw-r--r-- | telepathy-glib/debug-client.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/telepathy-glib/debug-client.h b/telepathy-glib/debug-client.h index 861be0370..d7e69c860 100644 --- a/telepathy-glib/debug-client.h +++ b/telepathy-glib/debug-client.h @@ -31,6 +31,7 @@ typedef struct _TpDebugClient TpDebugClient; typedef struct _TpDebugClientPrivate TpDebugClientPrivate; typedef struct _TpDebugClientClass TpDebugClientClass; +_TP_AVAILABLE_IN_0_20 TpDebugClient *tp_debug_client_new ( TpDBusDaemon *dbus, const gchar *unique_name, @@ -38,23 +39,28 @@ TpDebugClient *tp_debug_client_new ( #define TP_DEBUG_CLIENT_FEATURE_CORE \ (tp_debug_client_get_feature_quark_core ()) +_TP_AVAILABLE_IN_0_20 GQuark tp_debug_client_get_feature_quark_core (void) G_GNUC_CONST; +_TP_AVAILABLE_IN_0_20 void tp_debug_client_set_enabled_async ( TpDebugClient *self, gboolean enabled, GAsyncReadyCallback callback, gpointer user_data); +_TP_AVAILABLE_IN_0_20 gboolean tp_debug_client_set_enabled_finish ( TpDebugClient *self, GAsyncResult *result, GError **error); +_TP_AVAILABLE_IN_0_20 gboolean tp_debug_client_is_enabled (TpDebugClient *self); /* Tedious GObject boilerplate */ +_TP_AVAILABLE_IN_0_20 GType tp_debug_client_get_type (void); #define TP_TYPE_DEBUG_CLIENT \ @@ -73,13 +79,16 @@ GType tp_debug_client_get_type (void); (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_DEBUG_CLIENT, \ TpDebugClientClass)) +_TP_AVAILABLE_IN_0_20 void tp_debug_client_init_known_interfaces (void); +_TP_AVAILABLE_IN_0_20 void tp_debug_client_get_messages_async ( TpDebugClient *self, GAsyncReadyCallback callback, gpointer user_data); +_TP_AVAILABLE_IN_0_20 GPtrArray * tp_debug_client_get_messages_finish (TpDebugClient *self, GAsyncResult *result, GError **error) G_GNUC_WARN_UNUSED_RESULT; |