diff libgaim/plugins/mono/loader/debug-glue.c @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children
line wrap: on
line diff
--- /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);
+}