1
0
mirror of synced 2025-01-10 13:31:52 +01:00
ImHex/include/patches.hpp

15 lines
253 B
C++
Raw Permalink Normal View History

#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);
}