Files
lazarus-ccr/wst/trunk/wst_delphi.inc

20 lines
426 B
PHP
Raw Normal View History

{$IFDEF DELPHI}
type
{$IFDEF CompilerVersion}
{$IF ( CompilerVersion > 16.0 )}
QWord = UInt64;
{$IFEND}
{$ENDIF CompilerVersion}
{$IF Not Declared(QWord) }
QWord = type Int64;
{$IFEND
}
DWORD = LongWord;
PtrInt = Integer;
PByteArray = ^ByteArray;
ByteArray = array[0..$effffff] of Byte;
PtrUInt = Cardinal;
SizeInt = Longint;
UnicodeChar = WideChar;
{$ENDIF DELPHI}