1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-30 02:50:05 +00:00
This commit is contained in:
jules 2007-07-10 11:00:03 +00:00
parent 49e7aa830f
commit 067e400d4e
19 changed files with 5335 additions and 5313 deletions

View file

@ -133,7 +133,7 @@ void juce_setThreadPriority (void* handle, int priority) throw()
}
}
void Thread::setCurrentThreadAffinityMask (const uint32 affinityMask)
void Thread::setCurrentThreadAffinityMask (const uint32 affinityMask) throw()
{
#if SUPPORT_AFFINITIES
cpu_set_t affinity;

View file

@ -302,7 +302,7 @@ void ModifierKeys::updateCurrentModifiers()
currentModifierFlags = currentModifiers;
}
const ModifierKeys ModifierKeys::getCurrentModifiersRealtime()
const ModifierKeys ModifierKeys::getCurrentModifiersRealtime() throw()
{
int x, y, mouseMods;
getMousePos (x, y, mouseMods);
@ -3090,6 +3090,8 @@ const int KeyPress::numberPadMultiply = (XK_KP_Multiply & 0xff)| extendedK
const int KeyPress::numberPadDivide = (XK_KP_Divide & 0xff)| extendedKeyModifier;
const int KeyPress::numberPadSeparator = (XK_KP_Separator & 0xff)| extendedKeyModifier;
const int KeyPress::numberPadDecimalPoint = (XK_KP_Decimal & 0xff)| extendedKeyModifier;
const int KeyPress::numberPadEquals = (XK_KP_Equal & 0xff)| extendedKeyModifier;
const int KeyPress::numberPadDelete = (XK_KP_Delete & 0xff)| extendedKeyModifier;
const int KeyPress::playKey = (0xffeeff00) | extendedKeyModifier;
const int KeyPress::stopKey = (0xffeeff01) | extendedKeyModifier;
const int KeyPress::fastForwardKey = (0xffeeff02) | extendedKeyModifier;