1
0
Fork 0

New machine type variable

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1352
This commit is contained in:
Sjoerd van der Berg 2003-10-22 14:21:49 +00:00
parent 9e4ddd517b
commit a2948b3d58

View file

@ -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.