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

Method ThreadHelper

Common/ThreadHelper.cpp:5–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3DWORD WINAPI ThreadFunc(LPVOID lpParam);
4
5ThreadHelper::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
14ThreadHelper::~ThreadHelper()
15{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected