Posts 1–7 of 7 · Page 1 of 1
Dll Main input
Can someone help......can you show me how to make a DllMain input.....I need help
I'm allmost done with my noreload hack the only problem is the DllMain input
My DllMain input
Code:
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved ) {
DisableThreadLibraryCalls(hDll);
char msg[10] = {unic[5],unic[0],unic[6],unic[5],unic[4],unic[1],unic[3],unic[1],unic[2]};
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)runner, NULL, NULL, NULL);
return true;
}
lol just google it


Originally Posted by
DaRk
lol just google it

can you help?

Originally Posted by
badboy3
can you help?
Look in Brimir's TuT and u will find it out I think it should be something like this:
Code:
DWORD WINAPI Wait(LPVOID)
{
while(!Ready2Hook()) Sleep(200);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0, 0);
}
return 1;
}

Originally Posted by
Assassin's Creed
Look in Brimir's TuT and u will find it out I think it should be something like this:
Code:
DWORD WINAPI Wait(LPVOID)
{
while(!Ready2Hook()) Sleep(200);
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hacks, NULL, NULL, NULL);
return 0;
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread(0,0,(LPTHREAD_START_ROUTINE)Wait,0,0, 0);
}
return 1;
}
Thanks.....Looks like Swiftdude


Originally Posted by
oicaradeboi
Looks like Swiftdude

because it is..Posts 1–7 of 7 · Page 1 of 1