ResumeThread
Allows a previously suspended thread to run
#include <nwthread.h>
int ResumeThread (
int threadID);
The following table lists return values and descriptions.
The ResumeThread function reverses the effect of SuspendThread.
IMPORTANT:Your application must be aware of how its threads are suspended and must call ResumeThread only when it is appropriate. For example, if your application suspends a thread, it is appropriate for your application to resume the thread. However, it is not appropriate for your application to call ResumeThread for one of its threads that has been suspended by the OS, while the thread is running in OS code. Calling ResumeThread at an inappropriate time will cause unpredictable behavior.