comparison libpurple/server.h @ 15936:b449dc6b8a20

A little doxygen love and some tiny gaim->purpleisms
author Mark Doliner <mark@kingant.net>
date Mon, 26 Mar 2007 05:28:57 +0000
parents 32c366eeeb99
children 36b09c6f7957
comparison
equal deleted inserted replaced
15935:a26cbbd1409c 15936:b449dc6b8a20
36 /** 36 /**
37 * Send a typing message to a given user over a given connection. 37 * Send a typing message to a given user over a given connection.
38 * 38 *
39 * TODO: Could probably move this into the conversation API. 39 * TODO: Could probably move this into the conversation API.
40 * 40 *
41 * @param typing One of PURPLE_TYPING, PURPLE_TYPED, or PURPLE_NOT_TYPING. 41 * @param state One of PURPLE_TYPING, PURPLE_TYPED, or PURPLE_NOT_TYPING.
42 * @return A quiet-period, specified in seconds, where Purple will not 42 * @return A quiet-period, specified in seconds, where Purple will not
43 * send any additional typing notification messages. Most 43 * send any additional typing notification messages. Most
44 * protocols should return 0, which means that no additional 44 * protocols should return 0, which means that no additional
45 * PURPLE_TYPING messages need to be sent. If this is 5, for 45 * PURPLE_TYPING messages need to be sent. If this is 5, for
46 * example, then Purple will wait five seconds, and if the Purple 46 * example, then Purple will wait five seconds, and if the Purple
92 92
93 /** 93 /**
94 * @param data The hash function should be g_str_hash() and the equal 94 * @param data The hash function should be g_str_hash() and the equal
95 * function should be g_str_equal(). 95 * function should be g_str_equal().
96 */ 96 */
97 void serv_join_chat(PurpleConnection *, GHashTable *); 97 void serv_join_chat(PurpleConnection *, GHashTable *data);
98 98
99 /** 99 /**
100 * @param data The hash function should be g_str_hash() and the equal 100 * @param data The hash function should be g_str_hash() and the equal
101 * function should be g_str_equal(). 101 * function should be g_str_equal().
102 */ 102 */
103 void serv_reject_chat(PurpleConnection *, GHashTable *); 103 void serv_reject_chat(PurpleConnection *, GHashTable *data);
104 104
105 /** 105 /**
106 * @param data The hash function should be g_str_hash() and the equal 106 * @param data The hash function should be g_str_hash() and the equal
107 * function should be g_str_equal(). 107 * function should be g_str_equal().
108 */ 108 */