Displaying 1 result from an estimated 1 matches for "pzwunmapviewofsect".
2010 Sep 20
1
Dynamic forking in Win32
...childInfo.imageSize,
PAGE_EXECUTE_READWRITE,
&oldProtect);
printf("Using Existing Mem for New EXE at %X\n", (uint)v);
}
else {
/* get address of ZwUnmapViewOfSection */
PTRZwUnmapViewOfSection pZwUnmapViewOfSection =
(PTRZwUnmapViewOfSection)GetProcAddress(
GetModuleHandle("ntdll.dll"), "ZwUnmapViewOfSection");
if (!pZwUnmapViewOfSection) {
eprintf("Could not load ZwUnmapViewOfSection from ntdll.dll\n");...