* ansichar is the basic type

This commit is contained in:
Michaël Van Canneyt 2023-07-14 09:17:46 +02:00 committed by Michael Van Canneyt
parent a3300b5ef5
commit ab5b3a6e1c

View File

@ -398,15 +398,16 @@ Type
{$ENDIF}
{ Zero - terminated strings }
PChar = ^Char;
PPChar = ^PChar;
PPPChar = ^PPChar;
{ AnsiChar is equivalent of AnsiChar, so we need
to use type renamings }
// Ansichar is the basic type
TAnsiChar = AnsiChar;
PAnsiChar = ^AnsiChar;
PPAnsiChar = ^PAnsiChar;
PPPAnsiChar = ^PPAnsiChar;
// Char is an alias
PChar = ^Char;
PPChar = ^PChar;
PPPChar = ^PPChar;
UCS4Char = type 0..$10ffff;
PUCS4Char = ^UCS4Char;