Cleanup
git-svn-id: https://spexeah.com:8443/svn/Asuro@242 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user