From a2948b3d589745a3abad6fa0b7770db31f29998c Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Wed, 22 Oct 2003 14:21:49 +0000 Subject: [PATCH] New machine type variable Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1352 --- include/dosbox.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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.