comparison 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
comparison
equal deleted inserted replaced
14191:009db0b357b5 14192:60b1bc8dbf37
1 #include "module.h"
2
3 MODULE = Gaim::Debug PACKAGE = Gaim::Debug PREFIX = gaim_debug_
4 PROTOTYPES: ENABLE
5
6 void
7 gaim_debug(level, category, string)
8 Gaim::DebugLevel level
9 const char *category
10 const char *string
11
12 void
13 gaim_debug_misc(category, string)
14 const char *category
15 const char *string
16
17 void
18 gaim_debug_info(category, string)
19 const char *category
20 const char *string
21
22 void
23 gaim_debug_warning(category, string)
24 const char *category
25 const char *string
26
27 void
28 gaim_debug_error(category, string)
29 const char *category
30 const char *string
31
32 void
33 gaim_debug_fatal(category, string)
34 const char *category
35 const char *string
36
37 void
38 gaim_debug_set_enabled(enabled)
39 gboolean enabled
40
41 gboolean
42 gaim_debug_is_enabled()