ThreadMgr::CancelJobArray
Defined in:
Cancels one or more jobs.
C4Threads.h
Prototype
void CancelJobArray(int32 count, Job **jobArray);
Parameters
count |
The number of jobs to cancel. |
jobArray |
An array of pointers to the Job objects to be cancelled.
|
Description
The CancelJobArray
function cancels the count
jobs in the array specified by the jobArray
parameter. The cancellation process is identical to that described for the ThreadMgr::CancelJob
function.
See Also