comparison src/debug.h @ 11504:921f64947cad

[gaim-migrate @ 13749] Make gaim_debug_vargs static. It was commented for removal and with the gadu-gadu changes, nothing else needs it to be non-static. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 11 Sep 2005 05:16:59 +0000
parents bb0d7b719af2
children fc464a0abccc
comparison
equal deleted inserted replaced
11503:cd0c8830d881 11504:921f64947cad
56 #endif 56 #endif
57 57
58 /**************************************************************************/ 58 /**************************************************************************/
59 /** @name Debug API */ 59 /** @name Debug API */
60 /**************************************************************************/ 60 /**************************************************************************/
61 /**
62 * Outputs debug information.
63 *
64 * This differs from gaim_debug() in that it takes a va_list.
65 *
66 * @param level The debug level.
67 * @param category The category (or @c NULL).
68 * @param format The format string.
69 * @param args The format parameters.
70 *
71 * @see gaim_debug()
72 */
73 void gaim_debug_vargs(GaimDebugLevel level, const char *category,
74 const char *format, va_list args);
75
76 /** 61 /**
77 * Outputs debug information. 62 * Outputs debug information.
78 * 63 *
79 * @param level The debug level. 64 * @param level The debug level.
80 * @param category The category (or @c NULL). 65 * @param category The category (or @c NULL).