5212
|
1 /**
|
|
2 * @file debug.h Debug API
|
|
3 * @ingroup core
|
|
4 *
|
|
5 * gaim
|
|
6 *
|
|
7 * Copyright (C) 2002-2003, Christian Hammond <chipx86@gnupdate.org>
|
|
8 *
|
|
9 * This program is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
|
11 * the Free Software Foundation; either version 2 of the License, or
|
|
12 * (at your option) any later version.
|
|
13 *
|
|
14 * This program is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with this program; if not, write to the Free Software
|
|
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
22 */
|
|
23 #ifndef _GAIM_DEBUG_H_
|
|
24 #define _GAIM_DEBUG_H_
|
|
25
|
|
26 #include <stdarg.h>
|
|
27
|
|
28 /**
|
|
29 * Debug levels.
|
|
30 */
|
|
31 typedef enum
|
|
32 {
|
|
33 GAIM_DEBUG_ALL = 0, /**< All debug levels. */
|
|
34 GAIM_DEBUG_MISC, /**< General chatter. */
|
|
35 GAIM_DEBUG_INFO, /**< General operation Information. */
|
|
36 GAIM_DEBUG_WARNING, /**< Warnings. */
|
|
37 GAIM_DEBUG_ERROR, /**< Errors. */
|
|
38 GAIM_DEBUG_FATAL /**< Fatal errors. */
|
|
39
|
|
40 } GaimDebugLevel;
|
|
41
|
|
42 /**
|
|
43 * Debug UI operations.
|
|
44 */
|
|
45 typedef struct
|
|
46 {
|
|
47 void (*print)(GaimDebugLevel level, const char *category,
|
|
48 const char *format, va_list args);
|
|
49
|
|
50 } GaimDebugUiOps;
|
|
51
|
|
52 /**
|
|
53 * Outputs debug information.
|
|
54 *
|
|
55 * This differs from gaim_debug() in that it takes a va_list.
|
|
56 *
|
|
57 * @param level The debug level.
|
|
58 * @param category The category (or @c NULL).
|
|
59 * @param format The format string.
|
|
60 * @param args The format parameters.
|
|
61 *
|
|
62 * @see gaim_debug()
|
|
63 */
|
|
64 void gaim_debug_vargs(GaimDebugLevel level, const char *category,
|
|
65 const char *format, va_list args);
|
|
66
|
|
67 /**
|
|
68 * Outputs debug information.
|
|
69 *
|
|
70 * @param level The debug level.
|
|
71 * @param category The category (or @c NULL).
|
|
72 * @param format The format string.
|
|
73 */
|
|
74 void gaim_debug(GaimDebugLevel level, const char *category,
|
|
75 const char *format, ...);
|
|
76
|
|
77 /**
|
|
78 * Outputs debug information.
|
|
79 *
|
|
80 * @deprecated This has been replaced with gaim_debug(), and will be
|
|
81 * removed in a future release.
|
|
82 *
|
|
83 * @param fmt The format string.
|
|
84 *
|
|
85 * @see gaim_debug()
|
|
86 */
|
|
87 void debug_printf(const char *fmt, ...);
|
|
88
|
|
89 /**
|
|
90 * Sets the UI operations structure to be used when outputting debug
|
|
91 * information.
|
|
92 *
|
|
93 * @param ops The UI operations structure.
|
|
94 */
|
|
95 void gaim_set_debug_ui_ops(GaimDebugUiOps *ops);
|
|
96
|
|
97 /**
|
|
98 * Returns the UI operations structure used when outputting debug
|
|
99 * information.
|
|
100 *
|
|
101 * @return The UI operations structure in use.
|
|
102 */
|
|
103 GaimDebugUiOps *gaim_get_debug_ui_ops(void);
|
|
104
|
|
105 #endif /* _GAIM_DEBUG_H_ */
|