EncryptionPatch/RSAPatch/Memory.h
2023-12-10 01:48:53 +03:00

13 lines
No EOL
223 B
C++

#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