Mercurial > pidgin
view libpurple/plugins/mono/loader/debug-glue.c @ 15494:aa5a1237f42e
Didn't mean to ci that
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Fri, 02 Feb 2007 22:16:10 +0000 |
| parents | 5fe8042783c1 |
| children | 32c366eeeb99 |
line wrap: on
line source
#include "mono-glue.h" #include "debug.h" void gaim_debug_glue(int type, MonoString *cat, MonoString *str) { char *ccat; char *cstr; ccat = mono_string_to_utf8(cat); cstr = mono_string_to_utf8(str); gaim_debug(type, ccat, cstr); g_free(ccat); g_free(cstr); }
