comparison src/protocols/qq/keep_alive.h @ 14021:ef8490f9e823

[gaim-migrate @ 16618] Replaced all C++-style comments with C-style ones. Cleaned up some comments and implemented a more consistent formatting scheme. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Wed, 02 Aug 2006 15:35:36 +0000
parents 983fd420e86b
children
comparison
equal deleted inserted replaced
14020:13e7ba964993 14021:ef8490f9e823
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * 21 *
22 */ 22 */
23 23
24 // START OF FILE
25 /*****************************************************************************/
26 #ifndef _QQ_KEEP_ALIVE_H_ 24 #ifndef _QQ_KEEP_ALIVE_H_
27 #define _QQ_KEEP_ALIVE_H_ 25 #define _QQ_KEEP_ALIVE_H_
28 26
29 #include <glib.h> 27 #include <glib.h>
30 #include "connection.h" // GaimConnection 28 #include "connection.h"
31 #include "qq.h" // qq_buddy 29 #include "qq.h"
32 30
33 void qq_send_packet_keep_alive(GaimConnection * gc); 31 void qq_send_packet_keep_alive(GaimConnection *gc);
34 32
35 void qq_process_keep_alive_reply(guint8 * buf, gint buf_len, GaimConnection * gc); 33 void qq_process_keep_alive_reply(guint8 *buf, gint buf_len, GaimConnection *gc);
36 void qq_refresh_all_buddy_status(GaimConnection * gc); 34 void qq_refresh_all_buddy_status(GaimConnection *gc);
37 35
38 void qq_update_buddy_contact(GaimConnection * gc, qq_buddy * q_bud); 36 void qq_update_buddy_contact(GaimConnection *gc, qq_buddy *q_bud);
39 37
40 #endif 38 #endif
41 /*****************************************************************************/
42 // END OF FILE