mirror of
https://github.com/dobin/SuperMega
synced 2026-06-03 01:27:11 +00:00
feature: MyVirtualProtect
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
|
||||
BOOL MyVirtualProtect(
|
||||
LPVOID lpAddress,
|
||||
SIZE_T dwSize,
|
||||
DWORD flNewProtect,
|
||||
PDWORD lpflOldprotect
|
||||
) {
|
||||
return VirtualProtect(lpAddress, dwSize, flNewProtect, lpflOldprotect);
|
||||
}
|
||||
Reference in New Issue
Block a user