----------------------------------------------------------------------------- Entry point for running a function on this thread -----------------------------------------------------------------------------
| 131 | // Entry point for running a function on this thread |
| 132 | //----------------------------------------------------------------------------- |
| 133 | DWORD WINAPI ThreadImpl::ThreadProc |
| 134 | ( |
| 135 | void* _pArg |
| 136 | ) |
| 137 | { |
| 138 | ThreadImpl* pImpl = (ThreadImpl*)_pArg; |
| 139 | pImpl->Run(); |
| 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | //----------------------------------------------------------------------------- |
| 144 | // <ThreadImpl::Run> |