comparison src/prpl.h @ 4777:e23a7e166680

[gaim-migrate @ 5097] - a couple compile cleanups - status messages and tooltips won't crash gaim when people put up certain away messages - yahoo status messages will show the current "custom" message instead of the previous one committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 14 Mar 2003 22:49:32 +0000
parents c15e0699acae
children d9b6b5ae34e4
comparison
equal deleted inserted replaced
4776:6219ffd18c63 4777:e23a7e166680
431 * @param gc The gaim connection. 431 * @param gc The gaim connection.
432 * @param who The user. 432 * @param who The user.
433 * @param data The icon data. 433 * @param data The icon data.
434 * @param len The length of @a data. 434 * @param len The length of @a data.
435 */ 435 */
436 void set_icon_data(struct gaim_connection *gc, char *who, void *data, int len); 436 void set_icon_data(struct gaim_connection *gc, const char *who, void *data, int len);
437 437
438 /** 438 /**
439 * Retrieves the buddy icon data for a user. 439 * Retrieves the buddy icon data for a user.
440 * 440 *
441 * @param gc The gaim connection. 441 * @param gc The gaim connection.
442 * @param who The user. 442 * @param who The user.
443 * @param len The returned length of the data. 443 * @param len The returned length of the data.
444 * 444 *
445 * @return The buddy icon data. 445 * @return The buddy icon data.
446 */ 446 */
447 void *get_icon_data(struct gaim_connection *gc, char *who, int *len); 447 void *get_icon_data(struct gaim_connection *gc, const char *who, int *len);
448 448
449 /* stuff to load/unload PRPLs as necessary */ 449 /* stuff to load/unload PRPLs as necessary */
450 450
451 /** 451 /**
452 * Increments the reference count on a protocol plugin. 452 * Increments the reference count on a protocol plugin.