Function CSPThread::Start()
Description:
Starts the execution of the thread and passes a user specified parameter to the thread.
 |
Prototype:
bool Start(void* pvUserParam = 0);
Arguments:
- void* pvUserParam = 0 [IN]
Void pointer to a user defined paremeter.
Return value:
If successful, it returns true. Otherwise, it returns false.
Remarks:
When this function is called, the code that implements the protected member function Run() stars being executed in a seperate thread.
See also:
member functions Suspend(), Resume()
|
|