mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-27 23:37:05 -05:00
15 lines
253 B
C++
15 lines
253 B
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
namespace hex {
|
|
|
|
using Patches = std::map<u64, u8>;
|
|
|
|
std::vector<u8> generateIPSPatch(const Patches &patches);
|
|
std::vector<u8> generateIPS32Patch(const Patches &patches);
|
|
|
|
} |