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:
parent
60292fb70f
commit
f64cceafdf
1 changed files with 16 additions and 16 deletions
|
@ -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;}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue