comparison src/prpl.h @ 5538:f7dc3f656f03

[gaim-migrate @ 5938] No more connection_has_mail()! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 27 May 2003 08:09:10 +0000
parents cce2d7868c78
children 9eb5b13fd412
comparison
equal deleted inserted replaced
5537:3becf79500d2 5538:f7dc3f656f03
344 */ 344 */
345 void show_got_added(struct gaim_connection *gc, const char *id, 345 void show_got_added(struct gaim_connection *gc, const char *id,
346 const char *who, const char *alias, const char *msg); 346 const char *who, const char *alias, const char *msg);
347 347
348 /** 348 /**
349 * Called to notify the user that the account has new mail.
350 *
351 * If @a count is less than 0, the dialog will display the the sender
352 * and the subject, if available. If @a count is greater than 0, it will
353 * display how many messages the user has.
354 *
355 * @param gc The gaim connection.
356 * @param count The number of new e-mails.
357 * @param from The sender, or @c NULL.
358 * @param subject The subject, or @c NULL.
359 * @param url The URL to go to to read the new mail.
360 */
361 void connection_has_mail(struct gaim_connection *gc, int count,
362 const char *from, const char *subject,
363 const char *url);
364
365 /**
366 * Retrieves and sets the new buddy icon for a user. 349 * Retrieves and sets the new buddy icon for a user.
367 * 350 *
368 * @param gc The gaim connection. 351 * @param gc The gaim connection.
369 * @param who The user. 352 * @param who The user.
370 * @param data The icon data. 353 * @param data The icon data.