2020-10-11 10:30:00 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-10-09 19:13:42 +01:00
|
|
|
#include <string>
|
|
|
|
|
2021-02-25 16:04:50 +00:00
|
|
|
namespace common2
|
2021-01-31 13:26:23 +00:00
|
|
|
{
|
2021-10-30 15:24:54 +01:00
|
|
|
struct Geometry;
|
2021-02-25 16:04:50 +00:00
|
|
|
|
|
|
|
void setSnapshotFilename(const std::string & filename, const bool load);
|
|
|
|
|
2021-03-27 18:47:40 +00:00
|
|
|
// Do not call directly. Used in CommonFrame
|
|
|
|
void InitialiseEmulator();
|
|
|
|
void DestroyEmulator();
|
2021-02-25 16:04:50 +00:00
|
|
|
|
2021-10-30 15:24:54 +01:00
|
|
|
void loadGeometryFromRegistry(const std::string §ion, Geometry & geometry);
|
|
|
|
void saveGeometryToRegistry(const std::string §ion, const Geometry & geometry);
|
2021-02-25 16:04:50 +00:00
|
|
|
}
|