change CreateThread to _beginthreadex (related to ticket #84)
This commit is contained in:
parent
cb2dc775ec
commit
5e3ba55d49
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue