Mercurial > pidgin
view libpurple/plugins/perl/common/Debug.xs @ 15700:4a331e8d01df
Fix win32 docklet. This is pretty ugly - we'll force GTK+ 2.10 at some point and use GtkStatusIcon to avoid converting the stock images to HICONs directly.
| author | Daniel Atallah <daniel.atallah@gmail.com> |
|---|---|
| date | Sun, 25 Feb 2007 18:41:53 +0000 |
| parents | 5fe8042783c1 |
| children | 2f8274ce570a |
line wrap: on
line source
#include "module.h" MODULE = Gaim::Debug PACKAGE = Gaim::Debug PREFIX = gaim_debug_ PROTOTYPES: ENABLE void gaim_debug(level, category, string) Gaim::DebugLevel level const char *category const char *string CODE: gaim_debug(level, category, "%s", string); void gaim_debug_misc(category, string) const char *category const char *string CODE: gaim_debug_misc(category, "%s", string); void gaim_debug_info(category, string) const char *category const char *string CODE: gaim_debug_info(category, "%s", string); void gaim_debug_warning(category, string) const char *category const char *string CODE: gaim_debug_warning(category, "%s", string); void gaim_debug_error(category, string) const char *category const char *string CODE: gaim_debug_error(category, "%s", string); void gaim_debug_fatal(category, string) const char *category const char *string CODE: gaim_debug_fatal(category, "%s", string); void gaim_debug_set_enabled(enabled) gboolean enabled gboolean gaim_debug_is_enabled()
