* Copyright statement

This commit is contained in:
Michaël Van Canneyt 2023-11-14 12:17:40 +01:00
parent 903f1b9fad
commit 4943e01e25
4 changed files with 48 additions and 3 deletions

View File

@ -1,3 +1,18 @@
{
This file is part of the Free Pascal Run Time Library (rtl)
Copyright (c) 1999-2019 by the Free Pascal development team
This file provides the base of an application analytics system.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit System.Analytics;
{$MODE OBJFPC}

View File

@ -1,3 +1,19 @@
{
This file is part of the Free Pascal Run Time Library (rtl)
Copyright (c) 2023 by the Free Pascal development team
This file provides an ansistring unit as delphi has it.
Most routines are present in the SysUtils and StrUtils unit.
Do not use this for new FPC code.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit System.AnsiStrings;
{$mode objfpc}

View File

@ -1,9 +1,8 @@
{
This file is part of the Free Pascal Run Time Library (rtl)
Copyright (c) 1999-2019 by the Free Pascal development team
Copyright (c) 2023 by the Free Pascal development team
This file provides the base for the pluggable sorting algorithm
support. It also provides a default QuickSort implementation.
This file provides the base for a devices registry.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.

View File

@ -1,3 +1,18 @@
{
This file is part of the Free Pascal Run Time Library (rtl)
Copyright (c) 2023 by the Free Pascal development team
This file provides the base of an image list.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{$mode objfpc}
{$h+}
unit System.ImageList;