summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2008-09-15 15:23:53 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2008-09-15 18:18:42 +0100
commitfa53ad534359cf43ecd384275ab4933b8c7e3e97 (patch)
tree997688194e69f503d528e3380638950d1e7f6017
parentd01700cd86c758920e3706bd577fc791d13a511a (diff)
ChannelManager: add Since: annotations
-rw-r--r--telepathy-glib/channel-manager.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/telepathy-glib/channel-manager.c b/telepathy-glib/channel-manager.c
index 31d0dc678..2e9511993 100644
--- a/telepathy-glib/channel-manager.c
+++ b/telepathy-glib/channel-manager.c
@@ -44,6 +44,8 @@
* handles one-to-one messaging, a MUC channel manager which handles
* multi-user chat rooms and the index of chat rooms, and a media channel
* manager which handles VoIP calls.
+ *
+ * Since: 0.7.UNRELEASED
*/
#include "config.h"
@@ -205,6 +207,8 @@ tp_channel_manager_get_type (void)
*
* If @channels is non-empty, emit the #TpChannelManager::new-channels
* signal indicating that those channels have been created.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_new_channels (gpointer instance,
@@ -229,6 +233,8 @@ tp_channel_manager_emit_new_channels (gpointer instance,
* Emit the #TpChannelManager::new-channels signal indicating that the
* channel has been created. (This is a convenient shortcut for calling
* tp_channel_manager_emit_new_channels() with a one-entry hash table.)
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_new_channel (gpointer instance,
@@ -255,6 +261,8 @@ tp_channel_manager_emit_new_channel (gpointer instance,
*
* Emit the #TpChannelManager::channel-closed signal indicating that
* the channel at the given object path has been closed.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_channel_closed (gpointer instance,
@@ -276,6 +284,8 @@ tp_channel_manager_emit_channel_closed (gpointer instance,
* the given channel has been closed. (This is a convenient shortcut for
* calling tp_channel_manager_emit_channel_closed() with the
* #TpExportableChannel:object-path property of @channel.)
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_channel_closed_for_object (gpointer instance,
@@ -301,6 +311,8 @@ tp_channel_manager_emit_channel_closed_for_object (gpointer instance,
*
* Emit the #TpChannelManager::request-already-satisfied signal indicating
* that the pre-existing channel @channel satisfies @request_token.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_request_already_satisfied (gpointer instance,
@@ -325,6 +337,8 @@ tp_channel_manager_emit_request_already_satisfied (gpointer instance,
*
* Emit the #TpChannelManager::request-failed signal indicating that
* the request @request_token failed for the given reason.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_request_failed (gpointer instance,
@@ -351,6 +365,8 @@ tp_channel_manager_emit_request_failed (gpointer instance,
*
* Emit the #TpChannelManager::request-failed signal indicating that
* the request @request_token failed for the given reason.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_emit_request_failed_printf (gpointer instance,
@@ -384,6 +400,8 @@ tp_channel_manager_emit_request_failed_printf (gpointer instance,
* @user_data: Arbitrary data to be passed as the second argument of @func
*
* Calls func(channel, user_data) for each channel managed by @manager.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_foreach_channel (TpChannelManager *manager,
@@ -410,6 +428,8 @@ tp_channel_manager_foreach_channel (TpChannelManager *manager,
*
* Calls func(manager, fixed, allowed, user_data) for each channel class
* understood by @manager.
+ *
+ * Since: 0.7.UNRELEASED
*/
void
tp_channel_manager_foreach_channel_class (TpChannelManager *manager,
@@ -440,6 +460,8 @@ tp_channel_manager_foreach_channel_class (TpChannelManager *manager,
* Offers an incoming CreateChannel call to @manager.
*
* Returns: %TRUE if this request will be handled by @manager; else %FALSE.
+ *
+ * Since: 0.7.UNRELEASED
*/
gboolean
tp_channel_manager_create_channel (TpChannelManager *manager,
@@ -470,6 +492,8 @@ tp_channel_manager_create_channel (TpChannelManager *manager,
* Offers an incoming RequestChannel call to @manager.
*
* Returns: %TRUE if this request will be handled by @manager; else %FALSE.
+ *
+ * Since: 0.7.UNRELEASED
*/
gboolean
tp_channel_manager_request_channel (TpChannelManager *manager,
@@ -509,6 +533,8 @@ tp_channel_manager_request_channel (TpChannelManager *manager,
*
* Returns: %TRUE if all of the keys of @properties are elements of @fixed or
* @allowed; else %FALSE.
+ *
+ * Since: 0.7.UNRELEASED
*/
gboolean
tp_channel_manager_asv_has_unknown_properties (GHashTable *properties,