From 5c79d5bcafe57f8a6681fcdda155055f510a0dd9 Mon Sep 17 00:00:00 2001 From: gordon_gidluck Date: Sun, 14 Sep 2008 15:24:58 +0000 Subject: [PATCH] ticket#84. Ran into a problem with conversion from CreateFile to _beginthreadex. Changing it back for now. --- src/hostapi/wasapi/pa_win_wasapi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hostapi/wasapi/pa_win_wasapi.cpp b/src/hostapi/wasapi/pa_win_wasapi.cpp index bd4387a..f13a7f2 100644 --- a/src/hostapi/wasapi/pa_win_wasapi.cpp +++ b/src/hostapi/wasapi/pa_win_wasapi.cpp @@ -1517,7 +1517,7 @@ static PaError StartStream( PaStream *s ) } // Create a thread for this client. - stream->hThread = (HANDLE)_beginthreadex( + stream->hThread = CreateThread( NULL, // no security attribute 0, // default stack size ProcThread, -- 2.43.0