Answer the question
In order to leave comments, you need to log in
How to call a function on a thread?
There is a DLL that is attacked to the process and it has a function.
BOOL WINAPI DllMain(HINSTANCE dllHistance, DWORD callReason, void* reserved)
{
switch (callReason)
{
case DLL_PROCESS_ATTACH:
{
_beginthread(MainCM, 0, NULL);
break;
}
}
return 1;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question