comparison src/protocols/qq/sendqueue.h @ 14058:32a71e64ceae

[gaim-migrate @ 16673] Eliminated a number of warnings. Generally, this consisted of fixing incorrectly declared data types and adding a few casts. I also moved some declarations that occurred in the middle of code. Minor formatting changes. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Tue, 08 Aug 2006 23:20:08 +0000
parents ef8490f9e823
children
comparison
equal deleted inserted replaced
14057:44b42bb2c5f8 14058:32a71e64ceae
31 typedef struct _qq_sendpacket qq_sendpacket; 31 typedef struct _qq_sendpacket qq_sendpacket;
32 32
33 struct _qq_sendpacket { 33 struct _qq_sendpacket {
34 gint fd; 34 gint fd;
35 gint len; 35 gint len;
36 gchar *buf; 36 guint8 *buf;
37 guint16 cmd; 37 guint16 cmd;
38 guint16 send_seq; 38 guint16 send_seq;
39 gint resend_times; 39 gint resend_times;
40 time_t sendtime; 40 time_t sendtime;
41 }; 41 };