adapted to latest upstream changes.

This commit is contained in:
Norayr Chilingarian 2023-11-14 04:22:13 +04:00
parent 8b964acedb
commit 946e2f7f85
9 changed files with 83 additions and 76 deletions

View file

@ -1,19 +1,19 @@
MODULE vpkCharacterStack;
IMPORT lDefs, List, Out;
IMPORT strTypes, List, Out;
TYPE
TObject* = lDefs.TObject;
TObject* = List.TObject;
Node* = POINTER TO NodeDesc;
NodeDesc* = List.NodeDesc;
TChar* = POINTER TO TCharDesc;
TCharDesc = RECORD (lDefs.TObjectDesc)
TCharDesc = RECORD (List.TObjectDesc)
char* : CHAR
END;
string = lDefs.string;
string = strTypes.string;
CharacterStackType* = POINTER TO CharacterStackTypeDesc;