mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 01:58:26 +02:00
* Fixed THREAD_PRIORITY constants.
git-svn-id: trunk@9790 -
This commit is contained in:
parent
220565fb94
commit
68f340eb9c
@ -1786,14 +1786,15 @@
|
||||
VTA_BASELINE = 24;
|
||||
VTA_CENTER = 6;
|
||||
{ GetThreadPriority }
|
||||
THREAD_PRIORITY_ABOVE_NORMAL = 1;
|
||||
THREAD_PRIORITY_BELOW_NORMAL = -(1);
|
||||
THREAD_PRIORITY_HIGHEST = 2;
|
||||
THREAD_PRIORITY_IDLE = -(15);
|
||||
THREAD_PRIORITY_LOWEST = -(2);
|
||||
THREAD_PRIORITY_NORMAL = 0;
|
||||
THREAD_PRIORITY_TIME_CRITICAL = 15;
|
||||
THREAD_PRIORITY_ERROR_RETURN = 2147483647;
|
||||
THREAD_PRIORITY_TIME_CRITICAL = 0;
|
||||
THREAD_PRIORITY_HIGHEST = 1;
|
||||
THREAD_PRIORITY_ABOVE_NORMAL = 2;
|
||||
THREAD_PRIORITY_NORMAL = 3;
|
||||
THREAD_PRIORITY_BELOW_NORMAL = 4;
|
||||
THREAD_PRIORITY_LOWEST = 5;
|
||||
THREAD_PRIORITY_ABOVE_IDLE = 6;
|
||||
THREAD_PRIORITY_IDLE = 7;
|
||||
THREAD_PRIORITY_ERROR_RETURN = 2147483647;
|
||||
TLS_MINIMUM_AVAILABLE = 64;
|
||||
{ GetTimeFormat }
|
||||
TIME_NOMINUTESORSECONDS = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user