author | koda |
Thu, 09 Feb 2012 19:05:52 +0100 | |
changeset 6659 | a6030b32b222 |
parent 6653 | d45b6dbd2ad6 |
child 6663 | 2c4151afad0c |
permissions | -rw-r--r-- |
6512 | 1 |
system; |
2 |
||
3 |
type |
|
6635
c2fa29fe2a58
Some progress, still can't find the source of bad behavior
unc0rr
parents:
6552
diff
changeset
|
4 |
Integer = integer; |
6512 | 5 |
LongInt = integer; |
6 |
LongWord = integer; |
|
6516 | 7 |
Cardinal = integer; |
8 |
PtrInt = integer; |
|
6520 | 9 |
Word = integer; |
10 |
Byte = integer; |
|
11 |
SmallInt = integer; |
|
12 |
ShortInt = integer; |
|
6653 | 13 |
QWord = integer; |
14 |
GLInt = integer; |
|
15 |
GLUInt = integer; |
|
6516 | 16 |
|
17 |
pointer = pointer; |
|
18 |
PChar = pointer; |
|
19 |
||
6649
7f78e8a6db69
Fix a bug with type declaration trying to resolve type being declared
unc0rr
parents:
6635
diff
changeset
|
20 |
float = float; |
6516 | 21 |
double = float; |
22 |
real = float; |
|
6653 | 23 |
extended = float; |
24 |
GLFloat = float; |
|
6516 | 25 |
|
26 |
boolean = boolean; |
|
27 |
LongBool = boolean; |
|
28 |
||
29 |
string = string; |
|
30 |
shortstring = string; |
|
31 |
ansistring = string; |
|
32 |
||
33 |
char = char; |
|
6520 | 34 |
|
35 |
PByte = ^Byte; |
|
36 |
PLongInt = ^LongInt; |
|
37 |
PLongWord = ^LongWord; |
|
38 |
PInteger = ^Integer; |
|
6512 | 39 |
var |
40 |
false, true: boolean; |
|
6520 | 41 |
write, writeLn, read, readLn, inc, dec: procedure; |
42 |
StrLen, ord, Succ, Pred : function : integer; |
|
43 |
Low, High : function : integer; |
|
44 |
Now : function : integer; |
|
6552 | 45 |
StrPas, FormatDateTime : function : shortstring; |
6520 | 46 |
exit : procedure; |