Restarts a thread that was previously stopped with DosSuspendThread.

#define INCL_DOSPROCESS
#include <os2.h>

TID       tid;   /*  Thread identifier of the resumed thread. */
APIRET    ulrc;  /*  Return Code. */

ulrc = DosResumeThread(tid);


[Back] [Next]