copyrinf.pas

来自「delphi编程控件」· PAS 代码 · 共 37 行

PAS
37
字号
unit CopyrInf;

interface

const
  CopyrightOwner = 'Robert Rossmair';
  WebSiteURL = 't-online.de/home/Robert.Rossmair/';
  MailAddr = 'Robert.Rossmair@t-online.de';

  FreewareDisclaimer = 'Use, modification and distribution is allowed '+
              'without limitation, warranty, or liability of any kind.';

  GNUPubLicenseComp =
    'This component is distributed under the conditions of the GNU General Public License version 2 or later.';
  ComponentLicense =
    'This component is distributed under the conditions of the GNU Library General Public License version 2 or later.';
  GNUPublicLicense =
    'This program is free software; you can redistribute it and/or modify '+
    'it under the terms of the GNU General Public License as published by '+
    'the Free Software Foundation; either version 2 of the License, or '+
    '(at your option) any later version.'#13+
    'This program is free software; you can redistribute it and/or modify '+
    'it under the terms of the GNU General Public License as published by '+
    'the Free Software Foundation; either version 2 of the License, or '+
    '(at your option) any later version.'#13+
    '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.  See the '+
    'GNU General Public License for more details.'#13+
    'You should have received a copy of the GNU General Public License '+
    'along with this program (file COPYING); if not, write to the Free '+
    'Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.';

implementation

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?