Function CSPThread::Wait()
Description:
This member function waits for either the specified amount of time to elapse, or for the thread to exit (specify ulTime = WAIT_FOREVER).
 |
Prototype:
bool Wait(unsigned long ulTime = WAIT_FOREVER) const;
Arguments:
- unsigned long ulTime = WAIT_FOREVER [IN]
The time to wait in milliseconds.
Return value:
If successful, it returns true. Otherwise, it returns false.
|
|