AppleWin/source/frontends/common2/programoptions.h
mariofutire@gmail.com dab1735a69 Logging / Config replated changes.
sa2 / applen add flag to load qt init file (--qt-ini) (read only for now)
unify logging (--log)

Signed-off-by: mariofutire@gmail.com <pi@raspberrypi>
2020-10-11 20:14:01 +01:00

26 lines
465 B
C++

#include <string>
struct EmulatorOptions
{
std::string disk1;
std::string disk2;
bool createMissingDisks;
std::string snapshot;
int memclear;
bool log;
bool benchmark;
bool headless;
bool ntsc;
bool saveConfigurationOnExit;
bool useQtIni; // use Qt .ini file (read only)
bool run; // false if options include "-h"
};
bool getEmulatorOptions(int argc, const char * argv [], const std::string & version, EmulatorOptions & options);