mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-08 04:20:09 +00:00
Minor clean-ups.
This commit is contained in:
parent
9524149ce1
commit
27d1d9a9d9
14 changed files with 386 additions and 759 deletions
|
|
@ -128,11 +128,7 @@ void juce_CloseThreadHandle (void* handle)
|
|||
void* juce_createThread (void* userData)
|
||||
{
|
||||
unsigned int threadId;
|
||||
|
||||
return (void*) _beginthreadex (0, 0,
|
||||
&threadEntryProc,
|
||||
userData,
|
||||
0, &threadId);
|
||||
return (void*) _beginthreadex (0, 0, &threadEntryProc, userData, 0, &threadId);
|
||||
}
|
||||
|
||||
void juce_killThread (void* handle)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue