From 9a797e37f07ca227eb2153437fa7d894cab4c244 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 25 Mar 2009 09:43:27 +0100 Subject: reverted strerror and GetLastError way of logging, doesn't work that way! --- include/wolf/log/log.h | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'include') diff --git a/include/wolf/log/log.h b/include/wolf/log/log.h index c5f2a46..b9f04b8 100644 --- a/include/wolf/log/log.h +++ b/include/wolf/log/log.h @@ -20,8 +20,6 @@ #include "port/stdbool.h" -#include /* for ap_list */ - /** * @addtogroup wolf_log Logging * @{ @@ -288,28 +286,6 @@ void wolf_log_reopenlogtoeventlog( void ); */ void wolf_log( wolf_log_level_t level, int category_id, int message_id, const char *format, ... ); -/** - * Write a formatted log message to the logger (with an ap_list instead - * of variable arguments) - * - * @param level one of wolf_log_level_t - * @param category_id a category as defined in messages.h - * @param message_id a message id as defined in messages.h - * @param format snprintf like format string, - * the rest of the parameters given - * as defined in the format string - * @param ap an ap_list storing the parameters to map - */ -void wolf_log_ap( wolf_log_level_t level, int category_id, int message_id, const char *format, va_list ap ); - -#if defined _WIN32 -void wolf_log_win32( wolf_log_level_t level, int category_id, int message_id, const char *format, ... ); -void wolf_log_win32_ap( wolf_log_level_t level, int category_id, int message_id, const char *format, va_list ap ); -#endif - -void wolf_log_strerror( wolf_log_level_t level, int category_id, int message_id, const char *format, ... ); -void wolf_log_strerror_ap( wolf_log_level_t level, int category_id, int message_id, const char *format, va_list ap ); - #ifdef __cplusplus } #endif -- cgit v1.2.3-54-g00ecf