Create GetProcessHeapAlt.c

This commit is contained in:
3xp0rt 2022-03-27 22:57:12 +00:00 committed by GitHub
parent 1ffa2fab4d
commit 4605b6a29e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,8 @@
// Author: 3xp0rt
HANDLE GetProcessHeapAlt(VOID)
{
PPEB Peb = (PPEB)GetPeb();
return (HANDLE)Peb->ProcessHeap;
}