Files
windows-user-space-emulator/src/windows-emulator/module/module_mapping.hpp
2025-01-06 17:19:26 +01:00

10 lines
322 B
C++

#pragma once
#include <x64_emulator.hpp>
#include "mapped_module.hpp"
mapped_module map_module_from_data(emulator& emu, std::span<const uint8_t> data, std::filesystem::path file);
mapped_module map_module_from_file(emulator& emu, std::filesystem::path file);
bool unmap_module(emulator& emu, const mapped_module& mod);