Mercurial > pidgin
view libpurple/plugins/perl/common/Debug.xs @ 15872:045f2e2b2de2
merge of '2ece6994d58f95af39f4e36b5e5b58116198188a'
and 'de1d579f1efd330d7acfb5a1a8e8e8957ca3ba54'
| author | Evan Schoenberg <evan.s@dreskin.net> |
|---|---|
| date | Thu, 22 Mar 2007 12:52:25 +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()
