mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 02:40:26 +02:00
rtl: add TBytes and TUnicodeCharArray types
git-svn-id: trunk@19191 -
This commit is contained in:
parent
eb8a54d666
commit
8f4d02ccfa
@ -18,6 +18,9 @@
|
||||
*********************************************************************
|
||||
}
|
||||
|
||||
type
|
||||
TUnicodeCharArray = array of UnicodeChar;
|
||||
|
||||
function Trim(const S: unicodestring): unicodestring;
|
||||
function TrimLeft(const S: unicodestring): unicodestring;
|
||||
function TrimRight(const S: unicodestring): unicodestring;
|
||||
|
@ -98,6 +98,8 @@ type
|
||||
PWordarray = ^TWordArray;
|
||||
TWordArray = array[0..16383] of Word;
|
||||
|
||||
TBytes = array of Byte;
|
||||
|
||||
{ exceptions }
|
||||
Exception = class(TObject)
|
||||
private
|
||||
|
Loading…
Reference in New Issue
Block a user