Searched refs:pDetails (Results 1 – 1 of 1) sorted by relevance
206 struct threadDetails* pDetails = (struct threadDetails*) vDetails; in threadIntermediary() local209 result = (*(pDetails->func))(pDetails->arg); in threadIntermediary()211 delete pDetails; in threadIntermediary()223 struct threadDetails* pDetails = new threadDetails; // must be on heap in doCreateThread() local226 pDetails->func = fn; in doCreateThread()227 pDetails->arg = arg; in doCreateThread()230 hThread = (HANDLE) _beginthreadex(NULL, 0, threadIntermediary, pDetails, 0, in doCreateThread()236 (void*) pDetails, 0, (DWORD*) &thrdaddr); in doCreateThread()