From c251d2bdd4a61d7aa62a6a39d945437917e7477b Mon Sep 17 00:00:00 2001 From: vxunderground <57078196+vxunderground@users.noreply.github.com> Date: Sat, 13 Nov 2021 01:02:04 -0600 Subject: [PATCH] Delete GetNtdllWithoutFunction.c broken --- NtApi/GetNtdllWithoutFunction.c | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 NtApi/GetNtdllWithoutFunction.c diff --git a/NtApi/GetNtdllWithoutFunction.c b/NtApi/GetNtdllWithoutFunction.c deleted file mode 100644 index ab56154..0000000 --- a/NtApi/GetNtdllWithoutFunction.c +++ /dev/null @@ -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; -}