AppleWin/source/frontends/common2/utils.h
Andrea Odetti 3348d4420e SaveState: fix some issues in the order of things.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2022-01-10 15:38:13 +00:00

13 lines
302 B
C++

#pragma once
#include <string>
namespace common2
{
struct Geometry;
void setSnapshotFilename(const std::string & filename);
void loadGeometryFromRegistry(const std::string &section, Geometry & geometry);
void saveGeometryToRegistry(const std::string &section, const Geometry & geometry);
}