mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 10:19:30 +02:00
* ansichar is the basic type
This commit is contained in:
parent
a3300b5ef5
commit
ab5b3a6e1c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user