summaryrefslogtreecommitdiff
path: root/source/Common.def
blob: 9520230a9fb085a408aeaa59e0361c89800c42db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
DEFINITION MODULE Common;

TYPE
  ShortString = ARRAY[1..256] OF CHAR;
  Identifier = ARRAY[1..256] OF CHAR;
  PIdentifier = POINTER TO Identifier;
  TextLocation = RECORD
    line: CARDINAL;
    column: CARDINAL
  END;

END Common.