mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-06 04:52:26 +00:00
adapted to latest upstream changes.
This commit is contained in:
parent
8b964acedb
commit
946e2f7f85
9 changed files with 83 additions and 76 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue