not all Windows version have ABOVE_NORMAL and BELOW_NORMAL priorities...

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15271 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2005-04-26 15:07:11 +00:00
parent b348c9f8f9
commit 248ab71a93
1 changed files with 4 additions and 0 deletions

View File

@ -483,9 +483,13 @@ struct {
} priority_presets_defs[] = {
{ "realtime", REALTIME_PRIORITY_CLASS},
{ "high", HIGH_PRIORITY_CLASS},
#ifdef ABOVE_NORMAL_PRIORITY_CLASS
{ "abovenormal", ABOVE_NORMAL_PRIORITY_CLASS},
#endif
{ "normal", NORMAL_PRIORITY_CLASS},
#ifdef BELOW_NORMAL_PRIORITY_CLASS
{ "belownormal", BELOW_NORMAL_PRIORITY_CLASS},
#endif
{ "idle", IDLE_PRIORITY_CLASS},
{ NULL, NORMAL_PRIORITY_CLASS} /* default */
};