diff src/protocols/qq/qq.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 e6977f9435a1
children
line wrap: on
line diff
--- a/src/protocols/qq/qq.h	Wed Aug 02 13:37:13 2006 +0000
+++ b/src/protocols/qq/qq.h	Wed Aug 02 15:35:36 2006 +0000
@@ -20,26 +20,24 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-// START OF FILE
-/*****************************************************************************/
 #ifndef _QQ_QQ_H_
 #define _QQ_QQ_H_
 
 #include <glib.h>
-#include "proxy.h"		// GaimProxyType
-#include "internal.h"		// socket
-#include "roomlist.h"		// GaimRoomlist
-#include "ft.h"		// GaimXfer
+#include "ft.h"
+#include "internal.h"
+#include "proxy.h"
+#include "roomlist.h"
 
 #define QQ_KEY_LENGTH       16
-#define QQ_DEBUG            1	// whether we are doing DEBUG
+#define QQ_DEBUG            1	/* whether we are doing DEBUG */
 
 typedef struct _qq_data qq_data;
 typedef struct _qq_buddy qq_buddy;
 
 struct _qq_buddy {
 	guint32 uid;
-	guint8 icon;		// index: 01 - 85
+	guint8 icon;		/* index: 01 - 85 */
 	guint8 age;
 	guint8 gender;
 	gchar *nickname;
@@ -47,51 +45,51 @@
 	guint16 port;
 	guint8 status;
 	guint8 flag1;
-	guint8 comm_flag;	// details in qq_buddy_list.c
-	guint16 client_version; // added by gfhuang
+	guint8 comm_flag;	/* details in qq_buddy_list.c */
+	guint16 client_version;
 	time_t signon;
 	time_t idle;
 	time_t last_refresh;
 
-	gint8  role;		// role in group, used only in group->members list, gfhuang
+	gint8  role;		/* role in group, used only in group->members list */
 };
 
 struct _qq_data {
-	gint fd;		// socket file handler
-	guint32 uid;		// QQ number
-	guint8 *inikey;		// initial key to encrypt login packet
-	guint8 *pwkey;		// password in md5 (or md5' md5)
-	guint8 *session_key;	// later use this as key in this session
+	gint fd;			/* socket file handler */
+	guint32 uid;			/* QQ number */
+	guint8 *inikey;			/* initial key to encrypt login packet */
+	guint8 *pwkey;			/* password in md5 (or md5' md5) */
+	guint8 *session_key;		/* later use this as key in this session */
 
-	guint16 send_seq;	// send sequence number
-	guint8 login_mode;	// online of invisible
-	guint8 status;		// 
-	gboolean logged_in;	// used by qq-add_buddy
-	gboolean use_tcp;	// network in tcp or udp
+	guint16 send_seq;		/* send sequence number */
+	guint8 login_mode;		/* online of invisible */
+	guint8 status;
+	gboolean logged_in;		/* used by qq-add_buddy */
+	gboolean use_tcp;		/* network in tcp or udp */
 
-	GaimProxyType proxy_type;	// proxy type
-	GaimXfer *xfer;		// file transfer handler
+	GaimProxyType proxy_type;	/* proxy type */
+	GaimXfer *xfer;			/* file transfer handler */
 	struct sockaddr_in dest_sin;
 
-	// from real connction
+	/* from real connction */
 	gchar *server_ip;
 	guint16 server_port;
-	// get from login reply packet
+	/* get from login reply packet */
 	time_t login_time;
 	time_t last_login_time;
 	gchar *last_login_ip;
-	// get from keep_alive packet
-	gchar *my_ip;		// my ip address detected by server
-	guint16 my_port;	// my port detected by server
-	guint8 my_icon;		// my icon index
-	guint32 all_online;	// the number of online QQ users
-	time_t last_get_online;	// last time send get_friends_online packet
+	/* get from keep_alive packet */
+	gchar *my_ip;			/* my ip address detected by server */
+	guint16 my_port;		/* my port detected by server */
+	guint8 my_icon;			/* my icon index */
+	guint32 all_online;		/* the number of online QQ users */
+	time_t last_get_online;		/* last time send get_friends_online packet */
 
-	guint8 window[1 << 13];	// check up for duplicated packet
+	guint8 window[1 << 13];		/* check up for duplicated packet */
 	gint sendqueue_timeout;
 
 	GaimRoomlist *roomlist;
-	gint channel;		// the id for opened chat conversation
+	gint channel;			/* the id for opened chat conversation */
 
 	GList *groups;
 	GList *group_packets;
@@ -106,8 +104,6 @@
 	gboolean modifying_info;
 };
 
-void qq_function_not_implemented(GaimConnection * gc);
+void qq_function_not_implemented(GaimConnection *gc);
 
 #endif
-/*****************************************************************************/
-// END OF FILE