All of you people is just copying and pasting shit down from other people. sugestion: learn c++

#include <windows.h>
#include <iostream>
using namespace std;
void __cdecl PushToConsole(char* szVal ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( (dwCShell + 0x299D40) );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x1F8 );
_asm
{
push szVal;
call CONoff;
add esp, 4;
}
}
}
DWORD WINAPI hello(LPVOID)
{
while(GetModuleHandleA("CShell.dll") == NULL )
{
Sleep(150); //150ms
}
//} ------------------------------------------>error
bool reload = true;
//{ ------------------------------------------>error
_asm pushad;
if(GetAsyncKeyState(VK_NUMPAD1)&1)
{
reload = !reload;
}
Sleep(100);
__asm popad;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "TheAgent308", "Injected", 0);
CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
}
return TRUE;
}