-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRXTCONST.pas
38 lines (29 loc) · 1014 Bytes
/
RXTCONST.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{*******************************************************}
{ }
{ Delphi VCL Extensions (RX) }
{ }
{ Copyright (c) 1995, 1996 AO ROSNO }
{ }
{*******************************************************}
unit RXTCONST;
{ RX tools components constants }
{
Reserved diapasone
from MaxExtStrID - 136
to MaxExtStrID - 184
}
interface
const
{ The minimal VCL's used string ID is 61440. The custom IDs must be
less that above. }
MaxExtStrID = 61300;
const
{ MathParser }
SParseSyntaxError = MaxExtStrID - 145;
SParseNotCramp = MaxExtStrID - 146;
SParseDivideByZero = MaxExtStrID - 147;
SParseSqrError = MaxExtStrID - 148;
SParseLogError = MaxExtStrID - 149;
SParseInvalidFloatOperation = MaxExtStrID - 150;
implementation
end.