changeset 6883 | 70aec33185e2 |
parent 6878 | 0af34406b83d |
child 6886 | 4463ee51c9ec |
6882:0eb73121aa4c | 6883:70aec33185e2 |
---|---|
1 #pragma once |
1 #pragma once |
2 |
2 |
3 #include <stdbool.h> |
3 #include <stdbool.h> |
4 |
4 |
5 typedef char string255[]; |
5 typedef struct string255_ |
6 { |
|
7 char s[256]; |
|
8 } string255; |
|
6 |
9 |
7 typedef int SmallInt; |
10 typedef int SmallInt; |
8 typedef int Word; |
11 typedef int Word; |
9 typedef int LongInt; |
12 typedef int LongInt; |
10 typedef int LongWord; |
13 typedef int LongWord; |