--- psiconv/trunk/lib/psiconv/error.h 2003/11/23 21:47:24 167 +++ psiconv/trunk/lib/psiconv/error.h 2003/11/25 17:57:05 168 @@ -21,13 +21,12 @@ #define PSICONV_ERROR_H #include +#include #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ -extern int psiconv_verbosity; - typedef void (*psiconv_error_handler_t) (int kind, psiconv_u32 off, const char *message); @@ -35,11 +34,14 @@ /* These functions print error, warning, progress and debug information to * stderr */ -extern void psiconv_fatal(int level, psiconv_u32 off, const char *format,...); -extern void psiconv_warn(int level, psiconv_u32 off, const char *format,...); -extern void psiconv_progress(int level, psiconv_u32 off, +extern void psiconv_fatal(psiconv_config config,int level, psiconv_u32 off, + const char *format,...); +extern void psiconv_warn(psiconv_config config,int level, psiconv_u32 off, + const char *format,...); +extern void psiconv_progress(psiconv_config config,int level, psiconv_u32 off, const char *format,...); -extern void psiconv_debug(int level, psiconv_u32 off, const char *format,...); +extern void psiconv_debug(psiconv_config config,int level, psiconv_u32 off, + const char *format,...); #define PSICONV_VERB_DEBUG 4 #define PSICONV_VERB_PROGRESS 3