Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 31181:11be48c38c19
Credit where credit is doe. Closes #a14514.
committer: Paul Aurich <paul@darkrain42.org>
| author | noa@resare.com |
|---|---|
| date | Thu, 03 Feb 2011 01:43:01 +0000 |
| parents | a8cc50c2279f |
| children |
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); }
