mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-08 04:46:11 +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 Trim(const S: unicodestring): unicodestring;
|
||||||
function TrimLeft(const S: unicodestring): unicodestring;
|
function TrimLeft(const S: unicodestring): unicodestring;
|
||||||
function TrimRight(const S: unicodestring): unicodestring;
|
function TrimRight(const S: unicodestring): unicodestring;
|
||||||
|
@ -98,6 +98,8 @@ type
|
|||||||
PWordarray = ^TWordArray;
|
PWordarray = ^TWordArray;
|
||||||
TWordArray = array[0..16383] of Word;
|
TWordArray = array[0..16383] of Word;
|
||||||
|
|
||||||
|
TBytes = array of Byte;
|
||||||
|
|
||||||
{ exceptions }
|
{ exceptions }
|
||||||
Exception = class(TObject)
|
Exception = class(TObject)
|
||||||
private
|
private
|
||||||
|
Loading…
Reference in New Issue
Block a user