SDK/Lib/SysUtils.pas

28 lines
463 B
ObjectPascal
Raw Permalink Normal View History

2020-06-20 21:19:32 +02:00
(*
2021-01-08 16:39:17 +01:00
KolibriOS RTL SysUtils unit
Copyright (c) 2020-2021 Delphi SDK for KolibriOS team
2020-06-20 21:19:32 +02:00
*)
unit SysUtils;
interface
type
WordRec = System.WordRec;
LongRec = System.LongRec;
Int64Rec = System.Int64Rec;
PByteArray = System.PByteArray;
TByteArray = System.TByteArray;
PWordArray = System.PWordArray;
TWordArray = System.TWordArray;
PLongWordArray = System.PLongWordArray;
TLongWordArray = System.TLongWordArray;
2020-06-20 21:19:32 +02:00
implementation
end.