comparison src/protocols/qq/group_find.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_GROUP_FIND_H_ 23 #ifndef _QQ_GROUP_FIND_H_
26 #define _QQ_GROUP_FIND_H_ 24 #define _QQ_GROUP_FIND_H_
27 25
28 #include <glib.h> 26 #include <glib.h>
29 #include "connection.h" // GaimConnection 27 #include "connection.h"
30 #include "group.h" // qq_group 28 #include "group.h"
31 29
32 gchar *qq_group_find_member_by_channel_and_nickname(GaimConnection * gc, gint channel, const gchar * who); 30 gchar *qq_group_find_member_by_channel_and_nickname(GaimConnection *gc, gint channel, const gchar *who);
33 qq_buddy *qq_group_find_member_by_uid(qq_group * group, guint32 uid); 31 qq_buddy *qq_group_find_member_by_uid(qq_group *group, guint32 uid);
34 void qq_group_remove_member_by_uid(qq_group * group, guint32 uid); 32 void qq_group_remove_member_by_uid(qq_group *group, guint32 uid);
35 qq_buddy *qq_group_find_or_add_member(GaimConnection * gc, qq_group * group, guint32 member_uid); 33 qq_buddy *qq_group_find_or_add_member(GaimConnection *gc, qq_group *group, guint32 member_uid);
36 gboolean qq_group_find_internal_group_id_by_seq(GaimConnection * gc, guint16 seq, guint32 * internal_group_id); 34 gboolean qq_group_find_internal_group_id_by_seq(GaimConnection *gc, guint16 seq, guint32 *internal_group_id);
37 qq_group *qq_group_find_by_channel(GaimConnection * gc, gint channel); 35 qq_group *qq_group_find_by_channel(GaimConnection *gc, gint channel);
38 qq_group *qq_group_find_by_internal_group_id(GaimConnection * gc, guint32 internal_group_id); 36 qq_group *qq_group_find_by_internal_group_id(GaimConnection *gc, guint32 internal_group_id);
39 37
40 #endif 38 #endif
41 /*****************************************************************************/
42 // END OF FILE