1
0
Fork 0
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:
Julian Storer 2010-05-14 15:18:44 +01:00
parent a43448df13
commit ed97872c1a
74 changed files with 571 additions and 775 deletions

View file

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