1
0
Fork 0
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:
Julian Storer 2010-04-29 16:30:38 +01:00
parent 9524149ce1
commit 27d1d9a9d9
14 changed files with 386 additions and 759 deletions

View file

@ -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)