comparison libpurple/protocols/qq/buddy_list.h @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 44b4e8bd759b
comparison
equal deleted inserted replaced
15822:84b0f9b23ede 15823:32c366eeeb99
1 /** 1 /**
2 * @file buddy_list.h 2 * @file buddy_list.h
3 * 3 *
4 * gaim 4 * purple
5 * 5 *
6 * Gaim is the legal property of its developers, whose names are too numerous 6 * Purple is the legal property of its developers, whose names are too numerous
7 * to list here. Please refer to the COPYRIGHT file distributed with this 7 * to list here. Please refer to the COPYRIGHT file distributed with this
8 * source distribution. 8 * source distribution.
9 * 9 *
10 * This program is free software; you can redistribute it and/or modify 10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 11 * it under the terms of the GNU General Public License as published by
31 #define QQ_FRIENDS_LIST_POSITION_START 0x0000 31 #define QQ_FRIENDS_LIST_POSITION_START 0x0000
32 #define QQ_FRIENDS_LIST_POSITION_END 0xffff 32 #define QQ_FRIENDS_LIST_POSITION_END 0xffff
33 #define QQ_FRIENDS_ONLINE_POSITION_START 0x00 33 #define QQ_FRIENDS_ONLINE_POSITION_START 0x00
34 #define QQ_FRIENDS_ONLINE_POSITION_END 0xff 34 #define QQ_FRIENDS_ONLINE_POSITION_END 0xff
35 35
36 void qq_send_packet_get_buddies_online(GaimConnection *gc, guint8 position); 36 void qq_send_packet_get_buddies_online(PurpleConnection *gc, guint8 position);
37 void qq_process_get_buddies_online_reply(guint8 *buf, gint buf_len, GaimConnection *gc); 37 void qq_process_get_buddies_online_reply(guint8 *buf, gint buf_len, PurpleConnection *gc);
38 void qq_send_packet_get_buddies_list(GaimConnection *gc, guint16 position); 38 void qq_send_packet_get_buddies_list(PurpleConnection *gc, guint16 position);
39 void qq_process_get_buddies_list_reply(guint8 *buf, gint buf_len, GaimConnection *gc); 39 void qq_process_get_buddies_list_reply(guint8 *buf, gint buf_len, PurpleConnection *gc);
40 void qq_send_packet_get_all_list_with_group(GaimConnection *gc, guint32 position); 40 void qq_send_packet_get_all_list_with_group(PurpleConnection *gc, guint32 position);
41 void qq_process_get_all_list_with_group_reply(guint8 *buf, gint buf_len, GaimConnection *gc); 41 void qq_process_get_all_list_with_group_reply(guint8 *buf, gint buf_len, PurpleConnection *gc);
42 42
43 #endif 43 #endif