⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jcldata.pas

📁 East make Tray Icon in delphi
💻 PAS
字号:
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html

Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.

The Original Code is: JCLData.pas, released on 2004-11-05.

The Initial Developer of the Original Code is Andreas Hausladen
(Andreas dott Hausladen att gmx dott de)
Portions created by Andreas Hausladen are Copyright (C) 2004 Andreas Hausladen.
All Rights Reserved.

Contributor(s): -

You may retrieve the latest version of this file at the Project JEDI's JVCL
home page, located at http://jvcl.sourceforge.net

Known Issues:
-----------------------------------------------------------------------------}
// $Id: JCLData.pas,v 1.4 2004/12/23 00:25:12 ahuser Exp $

unit JCLData;

{$I jvcl.inc}

interface

const
  { JCLVersion specifies the string that is displayed when the JVCL Installer
    requires the user to install or compile the JCL. Changing this constant
    will only change the displayed string but not the JCL version testing
    code. }
  JCLVersion = '1.92 or 1.93(CVS)';


  { JCLBrowsePaths specifies the JCL directories that could be found in the
    browse and source path lists. They must have a leading backslash. If the
    path does not end with a backslash, the path is compared with the end
    (EndsWith) of the browse/source path. If it ends with a backslash the
    Installer searches for it in (Pos) the browse/search path. }
  JCLBrowsePaths: array[0..1] of string = (
    '\source\common',
    '\lib\'
  );


  { JCLIdentify specifies the JCL files that must exist in an assumed JCL root
    directory found by using JCLBrowsePaths[]. The paths must start with a
    backslash. }
  JCLIdentify: array[0..0] of string = (
    '\source\common\JclBase.pas'
  );


  { JCLIdentifyOutdated specifies the JCL files that must exist in the JCL root
    directory to be accepted as a new enought JCL version. The paths must start
    with a backslash. A leading "+" means that the file must exist, a leading
    "-" means that the file must not exist. }
  JCLIdentifyOutdated: array[0..2] of string = (
//    '+\source\windows\win32api\WinBase.int' // 1.93(CVS)
     '+\source\common\JclCompression.pas',
     '+\source\common\JclUnitVersioning.pas',
     '+\source\common\JclWideStrings.pas'
  );


implementation

end.

⌨️ 快捷键说明

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