mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
9 lines
177 B
C++
9 lines
177 B
C++
#pragma once
|
|
#include "x64_emulator.hpp"
|
|
|
|
namespace context_frame
|
|
{
|
|
void save(x64_emulator& emu, CONTEXT& context);
|
|
void restore(x64_emulator& emu, const CONTEXT& context);
|
|
}
|