| 594 GtkWidget *pidgin_buddy_icon_chooser_new(GtkWindow *parent, void(*callback)(const char*,gpointer), gpointer data); |
594 GtkWidget *pidgin_buddy_icon_chooser_new(GtkWindow *parent, void(*callback)(const char*,gpointer), gpointer data); |
| 595 |
595 |
| 596 /** |
596 /** |
| 597 * Converts a buddy icon to the required size and format |
597 * Converts a buddy icon to the required size and format |
| 598 * |
598 * |
| 599 * @param plugin The prpl to convert the icon |
599 * @param prpl_info The prpl to convert the icon |
| 600 * @param path The path of a file to convert |
600 * @param path The path of a file to convert |
| 601 * @param len If not @c NULL, the length of the returned data will be set here. |
601 * @param len If not @c NULL, the length of the returned data will be set here. |
| 602 * |
602 * |
| 603 * @return The converted image data, or @c NULL if an error occurred. |
603 * @return The converted image data, or @c NULL if an error occurred. |
| 604 */ |
604 */ |
| 605 gpointer pidgin_convert_buddy_icon(PurplePlugin *plugin, const char *path, size_t *len); |
605 gpointer pidgin_convert_buddy_icon(PurplePluginProtocolInfo *prpl_info, const char *path, size_t *len); |
| 606 |
606 |
| 607 /** |
607 /** |
| 608 * Converts "->" and "<-" in strings to Unicode arrow characters, for use in referencing |
608 * Converts "->" and "<-" in strings to Unicode arrow characters, for use in referencing |
| 609 * menu items. |
609 * menu items. |
| 610 * |
610 * |