mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 03:49:19 +02:00
* ansichar is the basic type
This commit is contained in:
parent
a3300b5ef5
commit
ab5b3a6e1c
@ -398,15 +398,16 @@ Type
|
|||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
{ Zero - terminated strings }
|
{ Zero - terminated strings }
|
||||||
PChar = ^Char;
|
// Ansichar is the basic type
|
||||||
PPChar = ^PChar;
|
|
||||||
PPPChar = ^PPChar;
|
|
||||||
|
|
||||||
{ AnsiChar is equivalent of AnsiChar, so we need
|
|
||||||
to use type renamings }
|
|
||||||
TAnsiChar = AnsiChar;
|
TAnsiChar = AnsiChar;
|
||||||
PAnsiChar = ^AnsiChar;
|
PAnsiChar = ^AnsiChar;
|
||||||
PPAnsiChar = ^PAnsiChar;
|
PPAnsiChar = ^PAnsiChar;
|
||||||
|
PPPAnsiChar = ^PPAnsiChar;
|
||||||
|
|
||||||
|
// Char is an alias
|
||||||
|
PChar = ^Char;
|
||||||
|
PPChar = ^PChar;
|
||||||
|
PPPChar = ^PPChar;
|
||||||
|
|
||||||
UCS4Char = type 0..$10ffff;
|
UCS4Char = type 0..$10ffff;
|
||||||
PUCS4Char = ^UCS4Char;
|
PUCS4Char = ^UCS4Char;
|
||||||
|
Loading…
Reference in New Issue
Block a user