| 112 | } |
| 113 | |
| 114 | WELS_THREAD_ROUTINE_TYPE CWelsThread::TheThread (void* pParam) { |
| 115 | CWelsThread* pThis = static_cast<CWelsThread*> (pParam); |
| 116 | |
| 117 | pThis->SetRunning (true); |
| 118 | |
| 119 | pThis->Thread(); |
| 120 | |
| 121 | WELS_THREAD_ROUTINE_RETURN (NULL); |
| 122 | } |
| 123 | |
| 124 | } |
| 125 |
nothing calls this directly
no test coverage detected