-
Notifications
You must be signed in to change notification settings - Fork 3
v0.7 PSI_CHXBasic
Chixpy edited this page Feb 3, 2024
·
1 revision
Warning
Esta ayuda es para la versión 0.7. Está obsoleta e incompleta.
La unidad PSI_CHXBasic incluye definiciones básicas para usar en Pascal Script que no son incluidas por defecto en el motor.
{$ifdef CPU64}
SizeInt: Int64;
{$endif CPU64}
{$ifdef CPU32}
SizeInt: Longint;
{$endif CPU32}
{$ifdef CPU16}
SizeInt: Integer;
{$endif CPU32}
Entero con signo de la arquitectura del procesador.
{$ifdef CPU64}
SizeUInt: Int64;
{$endif CPU64}
{$ifdef CPU32}
SizeUInt: DWord;
{$endif CPU32}
{$ifdef CPU16}
SizeUInt: Word;
{$endif CPU32}
Entero sin signo de la arquitectura del procesador.