+ add some Delphi-compatible type kind aliases

git-svn-id: trunk@37707 -
This commit is contained in:
svenbarth 2017-12-09 16:18:19 +00:00
parent c15bcc693d
commit c07e723d37

View File

@ -28,6 +28,15 @@ type
{$MINENUMSIZE DEFAULT}
const
{ some Delphi-compatible aliases }
tkAnsiChar = tkChar;
tkWideChar = tkWChar;
tkShortString = tkSString;
tkAnsiString = tkAString;
tkWideString = tkWString;
tkUnicodeString = tkUString;
procedure InitializeArray(p, typeInfo: Pointer; count: SizeInt);
procedure FinalizeArray(p, typeInfo: Pointer; count: SizeInt);
procedure CopyArray(dest, source, typeInfo: Pointer; count: SizeInt);