comparison src/conversation.c @ 11137:096020ae09a9

[gaim-migrate @ 13201] Some more deworming. I mean, dewarning. I also realized that lots of glib uses guchar* instead of guint* for passing around bits of binary data, so I changed some stuff in util.c that I'd already changed. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 21 Jul 2005 05:49:48 +0000
parents e4459e8ccfb5
children 1c5398ccbeb0
comparison
equal deleted inserted replaced
11136:6270b6ad69a2 11137:096020ae09a9
1672 1672
1673 } 1673 }
1674 1674
1675 void 1675 void
1676 gaim_conv_custom_smiley_write(GaimConversation *conv, const char *smile, 1676 gaim_conv_custom_smiley_write(GaimConversation *conv, const char *smile,
1677 const char * data, gint64 size) 1677 const guchar *data, gsize size)
1678 { 1678 {
1679 g_return_if_fail(conv != NULL); 1679 g_return_if_fail(conv != NULL);
1680 g_return_if_fail(smile != NULL && *smile); 1680 g_return_if_fail(smile != NULL && *smile);
1681 1681
1682 if (conv->ui_ops != NULL && conv->ui_ops->custom_smiley_write != NULL) 1682 if (conv->ui_ops != NULL && conv->ui_ops->custom_smiley_write != NULL)