| 3 | DWORD WINAPI ThreadFunc(LPVOID lpParam); |
| 4 | |
| 5 | ThreadHelper::ThreadHelper(LPVOID function, LPVOID param, int delay, int prt) { |
| 6 | this->delay = delay; |
| 7 | priority = prt; |
| 8 | func = (void (*)(LPVOID))function; |
| 9 | this->param = param; |
| 10 | tEvent = CreateEvent(NULL, true, false, NULL); |
| 11 | Start(); |
| 12 | } |
| 13 | |
| 14 | ThreadHelper::~ThreadHelper() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected