Delete GetNtdllWithoutFunction.c

broken
This commit is contained in:
vxunderground 2021-11-13 01:02:04 -06:00 committed by GitHub
parent d44de46a6c
commit c251d2bdd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +0,0 @@
PPEB GetPebAlt(VOID)
{
PTEB Teb;
#if defined(_WIN64)
Teb = (PTEB)__readgsqword(0x30);
#elif define(_WIN32)
Teb = (PTEB)__readfsdword(0x18);
#endif
return (PPEB)Teb->ProcessEnvironmentBlock;
}