◄Function Group► ◄Overview► ◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_DOSPROCESS USHORT DosResumeThread(tid) TID tid; /* identifier of thread to be resumed */ The DosResumeThread function restarts a thread that was previously stopped by the DosSuspendThread function. Parameter Description ──────────────────────────────────────────────────────────────────────────── tid Specifies the thread identifier of the thread to be resumed. The thread must have been created previously by using the DosCreateThread function. Return Value The return value is zero if the function is successful. Otherwise, it is an error value, which may be the following: ERROR_INVALID_THREADID See Also DosCreateThread, DosSuspendThread ♦