summaryrefslogtreecommitdiff
path: root/source/Common.def
diff options
context:
space:
mode:
Diffstat (limited to 'source/Common.def')
-rw-r--r--source/Common.def12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/Common.def b/source/Common.def
new file mode 100644
index 0000000..9520230
--- /dev/null
+++ b/source/Common.def
@@ -0,0 +1,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.