Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 30235:2f4291400a73
Did I mention this is entirely untested? (I don't have GTK+ on
my laptop)
| author | Paul Aurich <paul@darkrain42.org> |
|---|---|
| date | Sat, 03 Jul 2010 01:15:49 +0000 |
| parents | fd5dfd3c04b5 |
| children | a8cc50c2279f |
line wrap: on
line source
#include "mono-glue.h" #include "debug.h" void purple_debug_glue(int type, MonoString *cat, MonoString *str) { char *ccat; char *cstr; ccat = mono_string_to_utf8(cat); cstr = mono_string_to_utf8(str); purple_debug(type, ccat, "%s", cstr); g_free(ccat); g_free(cstr); }
