git-svn-id: https://spexeah.com:8443/svn/Asuro@242 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2017-10-25 02:24:59 +00:00
parent 9ef2bb7b4d
commit 22a34b5918
10 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,11 @@ type
Param : pchar;
Next : PParamList;
end;
PHistory = ^THistory;
THistory = record
Command : pchar;
Next : PHistory;
end;
TCommandBuffer = array[0..1023] of byte;
TCommandMethod = procedure(params : PParamList);
TCommand = record
@ -34,6 +39,7 @@ type
var
buffer : TCommandBuffer;
History : PHistory;
bIndex : uint32 = 0;
Commands : array[0..65534] of TCommand;