| |
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 CODE: |
| |
12 gaim_debug(level, category, "%s", string); |
| |
13 |
| |
14 void |
| |
15 gaim_debug_misc(category, string) |
| |
16 const char *category |
| |
17 const char *string |
| |
18 CODE: |
| |
19 gaim_debug_misc(category, "%s", string); |
| |
20 |
| |
21 void |
| |
22 gaim_debug_info(category, string) |
| |
23 const char *category |
| |
24 const char *string |
| |
25 CODE: |
| |
26 gaim_debug_info(category, "%s", string); |
| |
27 |
| |
28 void |
| |
29 gaim_debug_warning(category, string) |
| |
30 const char *category |
| |
31 const char *string |
| |
32 CODE: |
| |
33 gaim_debug_warning(category, "%s", string); |
| |
34 |
| |
35 void |
| |
36 gaim_debug_error(category, string) |
| |
37 const char *category |
| |
38 const char *string |
| |
39 CODE: |
| |
40 gaim_debug_error(category, "%s", string); |
| |
41 |
| |
42 void |
| |
43 gaim_debug_fatal(category, string) |
| |
44 const char *category |
| |
45 const char *string |
| |
46 CODE: |
| |
47 gaim_debug_fatal(category, "%s", string); |
| |
48 |
| |
49 void |
| |
50 gaim_debug_set_enabled(enabled) |
| |
51 gboolean enabled |
| |
52 |
| |
53 gboolean |
| |
54 gaim_debug_is_enabled() |