Tue, 02 Sep 2003 03:41:10 +0000
[gaim-migrate @ 7221]
This is contact support. Really.
It has a few bugs left in it, like sorting not working, and stuff like that,
but it's pretty solid for the most part.
I'm not in the mood to do a whole lot of typing, so just use and enjoy.
| 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> | |
|
6483
d12ecdf8e489
[gaim-migrate @ 6997]
Christian Hammond <chipx86@chipx86.com>
parents:
5944
diff
changeset
|
8 | * |
| 5212 | 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 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
52 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
53 | extern "C" { |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
54 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
55 | |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
56 | /**************************************************************************/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
57 | /** @name Debug API */ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
58 | /**************************************************************************/ |
| 5212 | 59 | /** |
| 60 | * Outputs debug information. | |
| 61 | * | |
| 62 | * This differs from gaim_debug() in that it takes a va_list. | |
| 63 | * | |
| 64 | * @param level The debug level. | |
| 65 | * @param category The category (or @c NULL). | |
| 66 | * @param format The format string. | |
| 67 | * @param args The format parameters. | |
| 68 | * | |
| 69 | * @see gaim_debug() | |
| 70 | */ | |
| 71 | void gaim_debug_vargs(GaimDebugLevel level, const char *category, | |
| 72 | const char *format, va_list args); | |
| 73 | ||
| 74 | /** | |
| 75 | * Outputs debug information. | |
| 76 | * | |
| 77 | * @param level The debug level. | |
| 78 | * @param category The category (or @c NULL). | |
| 79 | * @param format The format string. | |
| 80 | */ | |
| 81 | void gaim_debug(GaimDebugLevel level, const char *category, | |
| 82 | const char *format, ...); | |
| 83 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
84 | /*@}*/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
85 | |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
86 | /**************************************************************************/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
87 | /** @name UI Registration Functions */ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
88 | /**************************************************************************/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
89 | /*@{*/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
90 | |
| 5212 | 91 | /** |
| 92 | * Sets the UI operations structure to be used when outputting debug | |
| 93 | * information. | |
| 94 | * | |
| 95 | * @param ops The UI operations structure. | |
| 96 | */ | |
| 97 | void gaim_set_debug_ui_ops(GaimDebugUiOps *ops); | |
| 98 | ||
| 99 | /** | |
| 100 | * Returns the UI operations structure used when outputting debug | |
| 101 | * information. | |
| 102 | * | |
| 103 | * @return The UI operations structure in use. | |
| 104 | */ | |
| 105 | GaimDebugUiOps *gaim_get_debug_ui_ops(void); | |
| 106 | ||
|
5944
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
107 | /*@}*/ |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
108 | |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
109 | #ifdef __cplusplus |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
110 | } |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
111 | #endif |
|
f19df037ac58
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5212
diff
changeset
|
112 | |
| 5212 | 113 | #endif /* _GAIM_DEBUG_H_ */ |