1
0
Fork 0

added const to some char* and some other changes to get it compiling under gcc

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1007
This commit is contained in:
Peter Veenstra 2003-05-11 19:51:31 +00:00
parent 60292fb70f
commit f64cceafdf

View file

@ -41,24 +41,24 @@ void DEBUG_ShowMsg(char * format,...);
struct LOG
{
LOG(LOG_TYPES type, LOG_SEVERITIES severity) { return;}
void operator()(char* buf) { return;}
void operator()(char* buf, double f1) { return;}
void operator()(char* buf, double f1, Bit32u u1) { return;}
void operator()(char* buf, Bitu u1, double f1) { 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;}
void operator()(char* buf, Bitu u1, Bitu u2) { return;}
void operator()(char* buf, Bits u1, Bits u2) { return;}
void operator()(char* buf, Bitu u1, Bits u2) { return;}
void operator()(char* buf, Bits u1, Bitu u2) { return;}
void operator()(char* buf, Bit32s u1) { return;}
void operator()(char* buf, Bit32u u1) { return;}
void operator()(char* buf, Bits s1) { return;}
void operator()(char* buf, Bitu u1) { 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* buf, char* s1) { return;}
void operator()(char* buf, char* s1, Bit32u u1) { return;}
void operator()(char* buf, char* s1, Bit32u u1, Bit32u u2) { return;}
void operator()(char* buf, Bit32u u1, char* s1) { 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;}