1
0
Fork 0

Update logging with some new targets for better compling without debugging

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1099
This commit is contained in:
Sjoerd van der Berg 2003-07-08 17:11:04 +00:00
parent 11d98caddb
commit a8a7d4ed98
2 changed files with 10 additions and 18 deletions

View file

@ -23,6 +23,7 @@ programs.h \
render.h \
regs.h \
render.h \
serialport.h \
setup.h \
support.h \
timer.h \

View file

@ -40,25 +40,16 @@ void DEBUG_ShowMsg(char * format,...);
struct LOG
{
LOG(LOG_TYPES type, LOG_SEVERITIES severity) { return;}
void operator()(char const* buf) { return;}
void operator()(char const* buf, double f1) { return;}
void operator()(char const* buf, double f1, Bit32u u1) { return;}
void operator()(char const* buf, Bitu u1, double f1) { return;}
LOG(LOG_TYPES type, LOG_SEVERITIES severity) { return;}
void operator()(char const* buf) { return;}
void operator()(char const* buf, double f1) { return;}
void operator()(char const* buf, double f1, double f2) { return;}
void operator()(char const* buf, double f1, double f2, double f3) { return;}
void operator()(char const* buf, Bitu u1, Bitu u2) { return;}
void operator()(char const* buf, Bits u1, Bits u2) { return;}
void operator()(char const* buf, Bitu u1, Bits u2) { return;}
void operator()(char const* buf, Bits u1, Bitu u2) { return;}
void operator()(char const* buf, Bit32s& u1) { return;}
void operator()(char const* buf, Bit32u& u1) { return;}
void operator()(char const* buf, Bits& s1) { return;}
void operator()(char const* buf, Bitu& u1) { return;}
void operator()(char const* buf, char const* s1) { return;}
void operator()(char const* buf, char const* s1, Bit32u u1) { return;}
void operator()(char const* buf, char const* s1, Bit32u u1, Bit32u u2) { return;}
void operator()(char const* buf, Bit32u u1, char const* s1) { return;}
void operator()(char const* buf, char const* s1) { return;}
void operator()(char const* buf, char const* s1, double f1) { return;}
void operator()(char const* buf, char const* s1, double f1,double f2) { return;}
void operator()(char const* buf, double f1, char const* s1) { return;}