--- psiconv/trunk/lib/psiconv/error.h 2000/12/22 22:31:50 71 +++ psiconv/trunk/lib/psiconv/error.h 2003/11/27 11:43:51 173 @@ -21,25 +21,22 @@ #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); - -extern psiconv_error_handler_t psiconv_error_handler; - /* 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