do not want
#include <windows.h>
using namespace std;
//any definitions, shit like that
void main()
{
//Hacks here
}
DWORD WINAPI Thread(LPVOID)
{
while(!(DWORD)GetModuleHandleA("CShell.dll"))
{
main();
{
}
BOOL WINAPI DllMain(HINSTANCE hMODULE,DWORD Base,LPVOID lpvReserved)
{
if(Base == DLL_PROCESS_ATTACH) were are going to run a thread.
{
CreateThread(0,0,Thread,0,0,0);
}
return TRUE;
}