Mercurial > pidgin
view plugins/mono/loader/debug-glue.c @ 11884:b1099e09eb33
[gaim-migrate @ 14175]
I *think* this will make sure we distribute the right pieces for dbus
support, but I don't currently have a sensible way of testing. Also, I
suspect we may want some of the code generation to happen at dist time
instead of build time. Something to think about.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sat, 29 Oct 2005 02:06:36 +0000 |
| parents | a3302d271199 |
| children |
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); }
