EncryptionPatch/RSAPatch/Memory.h

13 lines
223 B
C
Raw Normal View History

2023-12-09 22:48:53 +00:00
#ifndef MEMORY_H
#define MEMORY_H
#include <Windows.h>
#include <vector>
namespace Memory
{
void WriteByteArray(uintptr_t address, uint8_t* value, size_t length);
uintptr_t Scan(LPCSTR module, LPCSTR pattern);
}
#endif