Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 15872:045f2e2b2de2
merge of '2ece6994d58f95af39f4e36b5e5b58116198188a'
and 'de1d579f1efd330d7acfb5a1a8e8e8957ca3ba54'
| author | Evan Schoenberg <evan.s@dreskin.net> |
|---|---|
| date | Thu, 22 Mar 2007 12:52:25 +0000 |
| parents | 32c366eeeb99 |
| children | fd5dfd3c04b5 |
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, cstr); g_free(ccat); g_free(cstr); }
