comparison src/protocols/qq/buddy_list.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
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
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 // START OF FILE
24 /*****************************************************************************/
25 #ifndef _QQ_BUDDY_LIST_H_ 23 #ifndef _QQ_BUDDY_LIST_H_
26 #define _QQ_BUDDY_LIST_H_ 24 #define _QQ_BUDDY_LIST_H_
27 25
28 #include <glib.h> 26 #include <glib.h>
29 #include "connection.h" // GaimConnection 27 #include "connection.h"
30 28
31 #define QQ_FRIENDS_LIST_POSITION_START 0x0000 29 #define QQ_FRIENDS_LIST_POSITION_START 0x0000
32 #define QQ_FRIENDS_LIST_POSITION_END 0xffff 30 #define QQ_FRIENDS_LIST_POSITION_END 0xffff
33 #define QQ_FRIENDS_ONLINE_POSITION_START 0x00 31 #define QQ_FRIENDS_ONLINE_POSITION_START 0x00
34 #define QQ_FRIENDS_ONLINE_POSITION_END 0xff 32 #define QQ_FRIENDS_ONLINE_POSITION_END 0xff
35 33
36 void qq_send_packet_get_buddies_online(GaimConnection * gc, guint8 position); 34 void qq_send_packet_get_buddies_online(GaimConnection *gc, guint8 position);
37 void qq_process_get_buddies_online_reply(guint8 * buf, gint buf_len, GaimConnection * gc); 35 void qq_process_get_buddies_online_reply(guint8 *buf, gint buf_len, GaimConnection *gc);
38 void qq_send_packet_get_buddies_list(GaimConnection * gc, guint16 position); 36 void qq_send_packet_get_buddies_list(GaimConnection *gc, guint16 position);
39 void qq_process_get_buddies_list_reply(guint8 * buf, gint buf_len, GaimConnection * gc); 37 void qq_process_get_buddies_list_reply(guint8 *buf, gint buf_len, GaimConnection *gc);
40 38 void qq_send_packet_get_all_list_with_group(GaimConnection *gc, guint32 position);
41 //added by gfhuang 39 void qq_process_get_all_list_with_group_reply(guint8 *buf, gint buf_len, GaimConnection *gc);
42 void qq_send_packet_get_all_list_with_group(GaimConnection * gc, guint32 position);
43 void qq_process_get_all_list_with_group_reply(guint8 * buf, gint buf_len, GaimConnection * gc);
44 40
45 #endif 41 #endif
46 /*****************************************************************************/
47 // END OF FILE