#include <windows.h>
typedef BOOL(WINAPI* IsDebuggerPresent_t)();
BOOL WINAPI FakeIsDebuggerPresent()
{
return FALSE;
}
void HookIAT()
{
DWORD* pIAT = (DWORD*)0x10035068;
DWORD oldProtect;
VirtualProtect(pIAT, sizeof(DWORD), PAGE_EXECUTE_READWRITE, &oldProtect);
*pIAT =...