diff libpurple/plugins/mono/loader/debug-glue.c @ 15373:5fe8042783c1

Rename gtk/ and libgaim/ to pidgin/ and libpurple/
author Sean Egan <seanegan@gmail.com>
date Sat, 20 Jan 2007 02:32:10 +0000
parents
children 32c366eeeb99
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libpurple/plugins/mono/loader/debug-glue.c	Sat Jan 20 02:32:10 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);
+}