mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-20 04:03:57 +00:00
13 lines
459 B
C++
13 lines
459 B
C++
#pragma once
|
|
|
|
#include <windows_emulator.hpp>
|
|
|
|
namespace snapshot
|
|
{
|
|
std::vector<std::byte> create_emulator_snapshot(const windows_emulator& win_emu);
|
|
std::filesystem::path write_emulator_snapshot(const windows_emulator& win_emu, bool log = true);
|
|
|
|
void load_emulator_snapshot(windows_emulator& win_emu, std::span<const std::byte> snapshot);
|
|
void load_emulator_snapshot(windows_emulator& win_emu, const std::filesystem::path& snapshot_file);
|
|
}
|