comparison libpurple/server.h @ 22768:f1a4ad1526a2

* Renamespace serv_got_chat_join_failed to purple_serv_got_chat_join_failed (new API should be namespaced under purple_ even if it's in server.c). * Update the versions in configure.ac since we're now going to have 2.5.0. * Fix ChangeLog.API to reflect my renamespacing.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Tue, 29 Apr 2008 02:58:23 +0000
parents 17cda378a2dd
children b30516259a8a
comparison
equal deleted inserted replaced
22766:84877c54098b 22768:f1a4ad1526a2
171 * fails. 171 * fails.
172 * 172 *
173 * @param gc The connection on which chat joining failed 173 * @param gc The connection on which chat joining failed
174 * @param name The name of the chat which we did not join 174 * @param name The name of the chat which we did not join
175 */ 175 */
176 void serv_got_join_chat_failed(PurpleConnection *gc, const char *name); 176 void purple_serv_got_join_chat_failed(PurpleConnection *gc, const char *name);
177 177
178 void serv_got_chat_left(PurpleConnection *g, int id); 178 void serv_got_chat_left(PurpleConnection *g, int id);
179 void serv_got_chat_in(PurpleConnection *g, int id, const char *who, 179 void serv_got_chat_in(PurpleConnection *g, int id, const char *who,
180 PurpleMessageFlags flags, const char *message, time_t mtime); 180 PurpleMessageFlags flags, const char *message, time_t mtime);
181 void serv_send_file(PurpleConnection *gc, const char *who, const char *file); 181 void serv_send_file(PurpleConnection *gc, const char *who, const char *file);