1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/* errorout.cpp ... is for outputting errors in command line tools
* Copyright by Martin Bickel
* Michael Moerz <mikem@debian.org>
*/
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <iostream>
#include <cstdio>
#include <cstdarg>
#ifdef _WIN32_
# include <windows.h>
# include <winuser.h>
#endif
#include "../../global.h"
#include "../../ascstring.h"
#if 0
void fatalError ( const ASCString& text )
{
fprintf ( stderr, text.c_str() );
#ifdef _WIN32_
MessageBox(NULL, text.c_str(), "Fatal Error", MB_ICONERROR | MB_OK | MB_TASKMODAL );
#endif
exit ( 1 );
}
void fatalError ( const char* formatstring, ... )
{
va_list paramlist;
va_start ( paramlist, formatstring );
char buf[10000];
vsprintf ( buf, formatstring, paramlist );
va_end ( paramlist );
fatalError ( ASCString ( buf ));
}
void warning ( const ASCString& output )
{
cerr << "ASC: " << output.c_str() << endl;
}
void longWarning ( const ASCString& output )
{
cerr << "ASC: " << output.c_str() << endl;
}
#endif
|