change CreateThread to _beginthreadex (related to ticket #84)

This commit is contained in:
gordon_gidluck 2008-09-14 14:29:34 +00:00
commit 5e3ba55d49

View file

@ -1517,7 +1517,7 @@ static PaError StartStream( PaStream *s )
}
// Create a thread for this client.
stream->hThread = CreateThread(
stream->hThread = (HANDLE)_beginthreadex(
NULL, // no security attribute
0, // default stack size
ProcThread,