Mercurial > pidgin
view plugins/mono/loader/blist-glue.c @ 14171:d38d8716426c
[gaim-migrate @ 16821]
Patch #1523103 ("Improved markup processing"):
"This patch tries to handle all the html-entities
(including stuff like ® and &#xx;) in
gaim_markup_strip_html and gaim_unescape_html.
This also allows fixing the issue with libxml2 where
& was being converted to &."
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Fri, 18 Aug 2006 00:15:25 +0000 |
parents | 8edb08af68c7 |
children |
line wrap: on
line source
#include <string.h> #include "blist.h" #include "mono-helper.h" #include "mono-glue.h" MonoObject* gaim_blist_get_handle_glue(void) { void *handle = gaim_blist_get_handle(); return mono_value_box(ml_get_domain(), mono_get_intptr_class(), &handle); } MonoObject* gaim_blist_build_buddy_object(void* data) { MonoObject *obj = NULL; GaimBuddy *buddy = (GaimBuddy*)data; obj = ml_create_api_object("Buddy"); g_return_val_if_fail(obj != NULL, NULL); ml_set_prop_string(obj, "Name", (char*)gaim_buddy_get_name(buddy)); ml_set_prop_string(obj, "Alias", (char*)gaim_buddy_get_alias(buddy)); return obj; }