24621373dd
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
20 lines
410 B
C++
20 lines
410 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 run; // false if options include "-h"
|
|
};
|
|
|
|
bool getEmulatorOptions(int argc, const char * argv [], const std::string & version, EmulatorOptions & options);
|