2020-12-27 19:43:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
2021-05-24 09:22:01 +01:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
class Registry;
|
2020-12-27 19:43:35 +00:00
|
|
|
|
2021-02-25 16:04:50 +00:00
|
|
|
namespace common2
|
|
|
|
{
|
2020-12-27 19:43:35 +00:00
|
|
|
|
2021-02-25 16:04:50 +00:00
|
|
|
struct EmulatorOptions;
|
|
|
|
|
|
|
|
std::string GetConfigFile(const std::string & filename);
|
2021-05-24 09:22:01 +01:00
|
|
|
std::shared_ptr<Registry> CreateFileRegistry(const EmulatorOptions & options);
|
2021-02-25 16:04:50 +00:00
|
|
|
|
|
|
|
}
|