I\'ve got a C++ Win32 application that has a number of threads that might be busy doing IO (HTTP calls, etc) when the user wants to shutdown the application. Currently, I p
You can call TerminateProcess - this will stop the process immediately, without notifying anyone and without waiting for anything.