+ introduced Sw_String

git-svn-id: branches/unicodekvm@48593 -
This commit is contained in:
nickysn 2021-02-10 13:35:11 +00:00
parent 29dfb6131e
commit 90b422b2d4

View File

@ -142,6 +142,16 @@ TYPE
Sw_Integer = LongInt; { Long integer now }
{$ENDIF}
{---------------------------------------------------------------------------}
{ SHORT/ANSI/UNICODE SWITCHED STRING TYPE }
{---------------------------------------------------------------------------}
TYPE
{$IFDEF FV_UNICODE}
Sw_String = UnicodeString;
{$ELSE FV_UNICODE}
Sw_String = ShortString;
{$ENDIF FV_UNICODE}
{---------------------------------------------------------------------------}
{ GENERAL ARRAYS }
{---------------------------------------------------------------------------}