libgaim/plugins/perl/common/Debug.xs

Wed, 12 Nov 2008 05:14:03 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Wed, 12 Nov 2008 05:14:03 +0000
branch
gaim
changeset 20471
1966704b3e42
parent 13191
plugins/perl/common/Debug.xs@6c98c6130701
parent 15257
plugins/perl/common/Debug.xs@c94113912aca
permissions
-rw-r--r--

merge of '77693555855fe9cd3215414f79964dba346cc5fa'
and '19a87e98e5857ad0289f2c760d460f7f1dbbb42d'

#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()

mercurial