source:
qutecom-2.2/libs/3rdparty/libpurple/pidgin-2.5.1/libpurple/plugins/mono/loader/debug-glue.c
@
168:db0dfb5e1126
| Last change on this file since 168:db0dfb5e1126 was 168:db0dfb5e1126, checked in by laurent@…, 5 years ago | |
|---|---|
| File size: 277 bytes | |
| Rev | Line | |
|---|---|---|
| [168] | 1 | #include "mono-glue.h" |
| 2 | #include "debug.h" | |
| 3 | ||
| 4 | void purple_debug_glue(int type, MonoString *cat, MonoString *str) | |
| 5 | { | |
| 6 | char *ccat; | |
| 7 | char *cstr; | |
| 8 | ||
| 9 | ccat = mono_string_to_utf8(cat); | |
| 10 | cstr = mono_string_to_utf8(str); | |
| 11 | ||
| 12 | purple_debug(type, ccat, cstr); | |
| 13 | ||
| 14 | g_free(ccat); | |
| 15 | g_free(cstr); | |
| 16 | } |
Note: See TracBrowser
for help on using the repository browser.
