Add ReadBytes function
This commit is contained in:
@@ -19,6 +19,12 @@ const char* Memory::Float32ToHexBytes(float value) {
|
||||
return bytes; // pointeur vers les 4 octets bruts
|
||||
}
|
||||
|
||||
std::vector<std::uint8_t> Memory::ReadBytes(const void* addr, std::size_t size) {
|
||||
std::vector<std::uint8_t> buffer(size);
|
||||
std::memcpy(buffer.data(), addr, size);
|
||||
return buffer;
|
||||
}
|
||||
|
||||
void Memory::PatchBytes(void* address, const char* bytes, size_t len)
|
||||
{
|
||||
auto it = patches.find(address);
|
||||
|
||||
@@ -20,6 +20,15 @@ class Memory
|
||||
*/
|
||||
static const char* Float32ToHexBytes(float value);
|
||||
|
||||
/**
|
||||
* Read x bytes in memory.
|
||||
*
|
||||
* @param address : The address to read.
|
||||
* @param size : The size in bytes to read
|
||||
* @std::vector<std::uint8_t> : The bytes read.
|
||||
*/
|
||||
static std::vector<std::uint8_t> ReadBytes(const void* addr, std::size_t size);
|
||||
|
||||
/**
|
||||
* Patch x bytes in memory.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user