diff -r b63ebf84c42b -r 77edc7a6191a libgaim/plugins/mono/loader/debug-glue.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgaim/plugins/mono/loader/debug-glue.c Sat Aug 19 01:50:10 2006 +0000 @@ -0,0 +1,16 @@ +#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); +}