1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-16 06:15:09 -05:00

Fix compilation on Linux

This commit is contained in:
Merlijn Wajer 2010-08-24 00:01:25 +02:00
parent 932f0fd8f9
commit ff86c034e8

View File

@ -165,10 +165,13 @@ type
Str : string; Str : string;
Key : byte; Key : byte;
end; end;
type type
TBufferByteArray = Array[0..524287] of Byte; TBufferByteArray = Array[0..524287] of Byte;
PBufferByteArray = ^TBufferByteArray; PBufferByteArray = ^TBufferByteArray;
PPoint = ^TPoint;
var var
BufferString : PChar; BufferString : PChar;
BufferLen : LongWord; BufferLen : LongWord;