MCPcopy Create free account
hub / github.com/T-Troll/alienfx-tools / ThreadFunc

Function ThreadFunc

Common/ThreadHelper.cpp:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39DWORD 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected