Looking forward to someone recode for x64 bit
Code:
#include <Windows.h>
#include <process.h>

using namespace std;
bool ig = true;
VOID Memory()
{
	while (1)
	{
		while (!GetModuleHandleA("CShell_x64.dll"));
		if (GetModuleHandleA("ClientFx_x64.fxd"))
		{
			if (ig)
			{
				memcpy((VOID*)0xF47CD4, "\x90\x90\x90\x90\x90\x90", 6);

			}
		}
	}
}

VOID WINAPIV StartAddress(LPVOID)
{
	_asm CALL Memory;
}

BOOL __stdcall DllMain(HMODULE module, DWORD reason, LPVOID reserved)
{
	if (reason == DLL_PROCESS_ATTACH)
	{
		DisableThreadLibraryCalls(module);
		//BeginAntiCpp
	}
	return 1;
}