comparison src/conversation.h @ 9846:c28d5b45624e

[gaim-migrate @ 10724] A patch from Nathan Fredrickson that should make Gaim not play sounds for people joining chats when you join chat. Um, his explanation is better: http://sourceforge.net/tracker/index.php?func=detail&aid=1008904&group_id=235&atid=300235 committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 24 Aug 2004 04:12:28 +0000
parents 78022bad9367
children acbbc0d73600
comparison
equal deleted inserted replaced
9845:7c459857f1c2 9846:c28d5b45624e
181 time_t mtime); 181 time_t mtime);
182 void (*write_conv)(GaimConversation *conv, const char *who, 182 void (*write_conv)(GaimConversation *conv, const char *who,
183 const char *message, GaimMessageFlags flags, 183 const char *message, GaimMessageFlags flags,
184 time_t mtime); 184 time_t mtime);
185 185
186 void (*chat_add_user)(GaimConversation *conv, const char *user); 186 void (*chat_add_user)(GaimConversation *conv, const char *user, gboolean new_arrival);
187 void (*chat_add_users)(GaimConversation *conv, GList *users); 187 void (*chat_add_users)(GaimConversation *conv, GList *users);
188 void (*chat_rename_user)(GaimConversation *conv, 188 void (*chat_rename_user)(GaimConversation *conv,
189 const char *old_name, const char *new_name); 189 const char *old_name, const char *new_name);
190 void (*chat_remove_user)(GaimConversation *conv, const char *user); 190 void (*chat_remove_user)(GaimConversation *conv, const char *user);
191 void (*chat_remove_users)(GaimConversation *conv, GList *users); 191 void (*chat_remove_users)(GaimConversation *conv, GList *users);
1190 * @param user The user to add. 1190 * @param user The user to add.
1191 * @param extra_msg An extra message to display with the join message. 1191 * @param extra_msg An extra message to display with the join message.
1192 * @param flags The users flags 1192 * @param flags The users flags
1193 */ 1193 */
1194 void gaim_conv_chat_add_user(GaimConvChat *chat, const char *user, 1194 void gaim_conv_chat_add_user(GaimConvChat *chat, const char *user,
1195 const char *extra_msg, GaimConvChatBuddyFlags flags); 1195 const char *extra_msg, GaimConvChatBuddyFlags flags,
1196 gboolean new_arrival);
1196 1197
1197 /** 1198 /**
1198 * Adds a list of users to a chat. 1199 * Adds a list of users to a chat.
1199 * 1200 *
1200 * The data is copied from @a users, so it is up to the developer to 1201 * The data is copied from @a users, so it is up to the developer to