add PCI framework
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3723
This commit is contained in:
parent
1828977d5c
commit
6bc4e41458
10 changed files with 682 additions and 4 deletions
|
@ -27,6 +27,7 @@ enum LOG_TYPES {
|
|||
LOG_PIT,LOG_KEYBOARD,LOG_PIC,
|
||||
LOG_MOUSE,LOG_BIOS,LOG_GUI,LOG_MISC,
|
||||
LOG_IO,
|
||||
LOG_PCI,
|
||||
LOG_MAX
|
||||
};
|
||||
|
||||
|
@ -65,6 +66,10 @@ struct LOG
|
|||
void operator()(char const* , double , double , double ) { }
|
||||
void operator()(char const* , double , double , double , double ) { }
|
||||
void operator()(char const* , double , double , double , double , double ) { }
|
||||
void operator()(char const* , double , double , double , double , double , double ) { }
|
||||
void operator()(char const* , double , double , double , double , double , double , double) { }
|
||||
|
||||
|
||||
|
||||
void operator()(char const* , char const* ) { }
|
||||
void operator()(char const* , char const* , double ) { }
|
||||
|
@ -73,7 +78,7 @@ struct LOG
|
|||
void operator()(char const* , double , double, char const* ) { }
|
||||
void operator()(char const* , char const*, char const*) { }
|
||||
|
||||
|
||||
void operator()(char const* , double , double , double , char const* ) { }
|
||||
}; //add missing operators to here
|
||||
//try to avoid anything smaller than bit32...
|
||||
void GFX_ShowMsg(char const* format,...) GCC_ATTRIBUTE(__format__(__printf__, 1, 2));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue