Mercurial > pidgin
view libpurple/plugins/perl/common/Debug.xs @ 16030:00a4de6880da
I think I'm committing the more recent version of this translation
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Mon, 09 Apr 2007 13:02:46 +0000 |
| parents | 2f8274ce570a |
| children | 39c7bb133a9f |
line wrap: on
line source
#include "module.h" MODULE = Purple::Debug PACKAGE = Purple::Debug PREFIX = purple_debug_ PROTOTYPES: ENABLE void purple_debug(level, category, string) Purple::DebugLevel level const char *category const char *string CODE: purple_debug(level, category, "%s", string); void purple_debug_misc(category, string) const char *category const char *string CODE: purple_debug_misc(category, "%s", string); void purple_debug_info(category, string) const char *category const char *string CODE: purple_debug_info(category, "%s", string); void purple_debug_warning(category, string) const char *category const char *string CODE: purple_debug_warning(category, "%s", string); void purple_debug_error(category, string) const char *category const char *string CODE: purple_debug_error(category, "%s", string); void purple_debug_fatal(category, string) const char *category const char *string CODE: purple_debug_fatal(category, "%s", string); void purple_debug_set_enabled(enabled) gboolean enabled gboolean purple_debug_is_enabled()
