diff --git a/include/dosbox.h b/include/dosbox.h index 4d7507ff..2f47f113 100644 --- a/include/dosbox.h +++ b/include/dosbox.h @@ -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.