mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
Tidied up some filenames, cleaned up some code. Removed VoidArray class (just use Array<void*> instead)
This commit is contained in:
parent
a43448df13
commit
ed97872c1a
74 changed files with 571 additions and 775 deletions
|
|
@ -37,7 +37,7 @@ void* juce_createThread (void* userData);
|
|||
void juce_killThread (void* handle);
|
||||
bool juce_setThreadPriority (void* handle, int priority);
|
||||
void juce_setCurrentThreadName (const String& name);
|
||||
#if JUCE_WIN32
|
||||
#if JUCE_WINDOWS
|
||||
void juce_CloseThreadHandle (void* handle);
|
||||
#endif
|
||||
|
||||
|
|
@ -74,7 +74,7 @@ void Thread::threadEntryPoint (Thread* const thread)
|
|||
runningThreads.removeValue (thread);
|
||||
}
|
||||
|
||||
#if JUCE_WIN32
|
||||
#if JUCE_WINDOWS
|
||||
juce_CloseThreadHandle (thread->threadHandle_);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue