summaryrefslogtreecommitdiff
path: root/libpurple/server.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2016-08-28 17:46:03 -0500
committerGary Kramlich <grim@reaperworld.com>2016-08-28 17:46:03 -0500
commit3da9d5ff3885bde1c39a88b12037995b47cd966e (patch)
tree41b57ab9cd67bae2bdc75fa26522398448d600b7 /libpurple/server.h
parenta2ae2e7524500b6cf9c8571599c296eabb979ac3 (diff)
downloadpidgin-3da9d5ff3885bde1c39a88b12037995b47cd966e.tar.gz
doc fixes for server.h
Diffstat (limited to 'libpurple/server.h')
-rw-r--r--libpurple/server.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/libpurple/server.h b/libpurple/server.h
index d63cf12874..754e486390 100644
--- a/libpurple/server.h
+++ b/libpurple/server.h
@@ -78,6 +78,8 @@ int purple_serv_send_im(PurpleConnection *gc, PurpleMessage *msg);
/**
* purple_get_attention_type_from_code:
+ * @account: The #PurpleAccount
+ * @type_code: The protocol specific attention type code to convert
*
* Get information about an account's attention commands, from the protocol.
*
@@ -254,6 +256,10 @@ void purple_serv_got_typing(PurpleConnection *gc, const char *name, int timeout,
/**
* purple_serv_got_typing_stopped:
+ * @gc: The #PurpleConnection
+ * @name: The name of the person that stopped typing.
+ *
+ * Called from a protocol when it has recieved a type stopped.
*
* @todo Could probably move this into the conversation API.
*/
@@ -265,6 +271,7 @@ void purple_serv_got_typing_stopped(PurpleConnection *gc, const char *name);
* @who: The username of the buddy that sent the message.
* @msg: The actual message received.
* @flags: The flags applicable to this message.
+ * @mtime: The timestamp of the message.
*
* This function is called by the protocol when it receives an IM message.
*/
@@ -273,6 +280,7 @@ void purple_serv_got_im(PurpleConnection *gc, const char *who, const char *msg,
/**
* purple_serv_join_chat:
+ * @gc: The #PurpleConnection
* @data: The hash function should be g_str_hash() and the equal
* function should be g_str_equal().
*/
@@ -280,6 +288,7 @@ void purple_serv_join_chat(PurpleConnection *gc, GHashTable *data);
/**
* purple_serv_reject_chat:
+ * @gc: The #PurpleConnection
* @data: The hash function should be g_str_hash() and the equal
* function should be g_str_equal().
*/