comparison libpurple/protocols/qq/group_join.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 group_join.h 2 * @file group_join.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
39 QQ_GROUP_AUTH_REQUEST_APPLY = 0x01, 39 QQ_GROUP_AUTH_REQUEST_APPLY = 0x01,
40 QQ_GROUP_AUTH_REQUEST_APPROVE = 0x02, 40 QQ_GROUP_AUTH_REQUEST_APPROVE = 0x02,
41 QQ_GROUP_AUTH_REQUEST_REJECT = 0x03 41 QQ_GROUP_AUTH_REQUEST_REJECT = 0x03
42 }; 42 };
43 43
44 void qq_send_cmd_group_auth(GaimConnection *gc, qq_group *group, guint8 opt, guint32 uid, const gchar *reason_utf8); 44 void qq_send_cmd_group_auth(PurpleConnection *gc, qq_group *group, guint8 opt, guint32 uid, const gchar *reason_utf8);
45 void qq_group_join(GaimConnection *gc, GHashTable *data); 45 void qq_group_join(PurpleConnection *gc, GHashTable *data);
46 void qq_send_cmd_group_join_group(GaimConnection *gc, qq_group *group); 46 void qq_send_cmd_group_join_group(PurpleConnection *gc, qq_group *group);
47 void qq_group_exit(GaimConnection *gc, GHashTable *data); 47 void qq_group_exit(PurpleConnection *gc, GHashTable *data);
48 void qq_send_cmd_group_exit_group(GaimConnection *gc, qq_group *group); 48 void qq_send_cmd_group_exit_group(PurpleConnection *gc, qq_group *group);
49 void qq_process_group_cmd_exit_group(guint8 *data, guint8 **cursor, gint len, GaimConnection *gc); 49 void qq_process_group_cmd_exit_group(guint8 *data, guint8 **cursor, gint len, PurpleConnection *gc);
50 void qq_process_group_cmd_join_group_auth(guint8 *data, guint8 **cursor, gint len, GaimConnection *gc); 50 void qq_process_group_cmd_join_group_auth(guint8 *data, guint8 **cursor, gint len, PurpleConnection *gc);
51 void qq_process_group_cmd_join_group(guint8 *data, guint8 **cursor, gint len, GaimConnection *gc); 51 void qq_process_group_cmd_join_group(guint8 *data, guint8 **cursor, gint len, PurpleConnection *gc);
52 52
53 #endif 53 #endif