diff libgaim/plugins/perl/common/Debug.xs @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children ee79c2c1b5ac
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libgaim/plugins/perl/common/Debug.xs	Sat Aug 19 01:50:10 2006 +0000
@@ -0,0 +1,42 @@
+#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
+
+void
+gaim_debug_misc(category, string)
+	const char *category
+	const char *string
+
+void
+gaim_debug_info(category, string)
+	const char *category
+	const char *string
+
+void
+gaim_debug_warning(category, string)
+	const char *category
+	const char *string
+
+void
+gaim_debug_error(category, string)
+	const char *category
+	const char *string
+
+void
+gaim_debug_fatal(category, string)
+	const char *category
+	const char *string
+
+void
+gaim_debug_set_enabled(enabled)
+	gboolean enabled
+
+gboolean
+gaim_debug_is_enabled()