--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgaim/plugins/mono/loader/debug-glue.c Sun Apr 15 02:10:37 2007 +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); +}