00001 00023 // START OF FILE 00024 /*****************************************************************************/ 00025 #ifndef _QQ_BUDDY_LIST_H_ 00026 #define _QQ_BUDDY_LIST_H_ 00027 00028 #include <glib.h> 00029 #include "connection.h" // GaimConnection 00030 00031 #define QQ_FRIENDS_LIST_POSITION_START 0x0000 00032 #define QQ_FRIENDS_LIST_POSITION_END 0xffff 00033 #define QQ_FRIENDS_ONLINE_POSITION_START 0x00 00034 #define QQ_FRIENDS_ONLINE_POSITION_END 0xff 00035 00036 void qq_send_packet_get_buddies_online(GaimConnection * gc, guint8 position); 00037 void qq_process_get_buddies_online_reply(guint8 * buf, gint buf_len, GaimConnection * gc); 00038 void qq_send_packet_get_buddies_list(GaimConnection * gc, guint16 position); 00039 void qq_process_get_buddies_list_reply(guint8 * buf, gint buf_len, GaimConnection * gc); 00040 #endif 00041 /*****************************************************************************/ 00042 // END OF FILE
1.4.4