New machine type variable
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1352
This commit is contained in:
parent
9e4ddd517b
commit
a2948b3d58
1 changed files with 10 additions and 1 deletions
|
@ -19,7 +19,6 @@
|
|||
#if !defined __DOSBOX_H
|
||||
#define __DOSBOX_H
|
||||
|
||||
|
||||
void E_Exit(char * message,...);
|
||||
|
||||
void MSG_Add(const char*,const char*); //add messages to the internal langaugefile
|
||||
|
@ -60,6 +59,16 @@ void DOSBOX_Init(void);
|
|||
class Config;
|
||||
extern Config * control;
|
||||
|
||||
enum MachineType {
|
||||
MCH_HERC,
|
||||
MCH_CGA,
|
||||
MCH_TANDY,
|
||||
MCH_VGA,
|
||||
MCH_AUTO
|
||||
};
|
||||
|
||||
extern MachineType machine;
|
||||
|
||||
#ifndef __LOGGING_H_
|
||||
#include "logging.h"
|
||||
#endif // the logging system.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue