comparison src/conversation.h @ 12463:b1717befbb26

[gaim-migrate @ 14773] SF Patch #1377719 from Evan Schoenberg "A recent reorganization of how the chat_add_users() conversation UI op is sent removed passing to the UI of whether the additions are new arrivals or not. This information lets the UI make decisions about how to handle the new people, what if anything to display, etc." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Dec 2005 07:35:43 +0000
parents 4d3119205a33
children 204bd8fac61f
comparison
equal deleted inserted replaced
12462:398bdfe07c57 12463:b1717befbb26
150 time_t mtime); 150 time_t mtime);
151 void (*write_conv)(GaimConversation *conv, const char *name, const char *alias, 151 void (*write_conv)(GaimConversation *conv, const char *name, const char *alias,
152 const char *message, GaimMessageFlags flags, 152 const char *message, GaimMessageFlags flags,
153 time_t mtime); 153 time_t mtime);
154 154
155 void (*chat_add_users)(GaimConversation *conv, GList *users, GList *flags, GList *aliases); 155 void (*chat_add_users)(GaimConversation *conv, GList *users,
156 GList *flags, GList *aliases, gboolean new_arrivals);
156 void (*chat_rename_user)(GaimConversation *conv, const char *old_name, 157 void (*chat_rename_user)(GaimConversation *conv, const char *old_name,
157 const char *new_name, const char *new_alias); 158 const char *new_name, const char *new_alias);
158 void (*chat_remove_user)(GaimConversation *conv, const char *user); 159 void (*chat_remove_user)(GaimConversation *conv, const char *user);
159 void (*chat_remove_users)(GaimConversation *conv, GList *users); 160 void (*chat_remove_users)(GaimConversation *conv, GList *users);
160 void (*chat_update_user)(GaimConversation *conv, const char *user); 161 void (*chat_update_user)(GaimConversation *conv, const char *user);