Terminate a thread
How can I terminate a thread that is created by the application with using DLL. Is this possible???
Enumerate through the process' threads using CreateToolhelp32Snapshot. Once you've found the target thread, get a thread handle via OpenThread with terminate access and call TerminateThread?