mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
27 lines
664 B
C++
27 lines
664 B
C++
#include "dobby_internal.h"
|
|
|
|
#include <windows.h>
|
|
|
|
using namespace zz;
|
|
|
|
PUBLIC MemoryOperationError CodePatch(void *address, uint8_t *buffer, uint32_t buffer_size) {
|
|
DWORD oldProtect;
|
|
int pageSize;
|
|
|
|
// Get page size
|
|
SYSTEM_INFO si;
|
|
GetSystemInfo(&si);
|
|
pageSize = si.dwPageSize;
|
|
|
|
void *addressPageAlign = (void *)ALIGN(address, pageSize);
|
|
|
|
if (!VirtualProtect(addressPageAlign, pageSize, PAGE_EXECUTE_READWRITE, &oldProtect))
|
|
return kMemoryOperationError;
|
|
|
|
memcpy(address, buffer, buffer_size);
|
|
|
|
if (!VirtualProtect(addressPageAlign, pageSize, oldProtect, &oldProtect))
|
|
return kMemoryOperationError;
|
|
|
|
return kMemoryOperationSuccess;
|
|
}
|