| 37 | } |
| 38 | |
| 39 | DWORD WINAPI ThreadFunc(LPVOID lpParam) { |
| 40 | ThreadHelper* src = (ThreadHelper*)lpParam; |
| 41 | do { |
| 42 | src->func(src->param); |
| 43 | } while (WaitForSingleObject(src->tEvent, src->delay) == WAIT_TIMEOUT); |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected