ResumeThread
Resume a suspended thread.
Declaration
Source position: threadh.inc line 151
function ResumeThread(threadHandle: TThreadID) : DWord;
Description
ResumeThread causes a suspended thread (using SuspendThread ) to resume it's execution. The thread is identified with it's handle or ID threadHandle.
The function returns zero if successful. A nonzero return value indicates failure.
Errors
If a failure occurred, a nonzero result is returned. The meaning is system dependent.
See also
| Name | Description |
|---|---|
| KillThread | Kill a running thread |
| SuspendThread | Suspend a running thread. |