Searched refs:pDetails (Results 1 – 1 of 1) sorted by relevance
199 struct threadDetails* pDetails = (struct threadDetails*) vDetails; in threadIntermediary() local202 result = (*(pDetails->func))(pDetails->arg); in threadIntermediary()204 delete pDetails; in threadIntermediary()216 struct threadDetails* pDetails = new threadDetails; // must be on heap in doCreateThread() local219 pDetails->func = fn; in doCreateThread()220 pDetails->arg = arg; in doCreateThread()223 hThread = (HANDLE) _beginthreadex(NULL, 0, threadIntermediary, pDetails, 0, in doCreateThread()229 (void*) pDetails, 0, (DWORD*) &thrdaddr); in doCreateThread()