Add ReadBytes function
This commit is contained in:
@@ -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