ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/journaling/runtime/nongui/IBVersion.pas
Revision: 241
Committed: Thu Oct 25 13:57:12 2018 UTC (5 years, 5 months ago) by tony
Content type: text/x-pascal
Original Path: ibx/trunk/runtime/nongui/IBVersion.pas
File size: 1156 byte(s)
Log Message:
Fixes merged

File Contents

# User Rev Content
1 tony 209 (*
2     * IBX For Lazarus (Firebird Express)
3     *
4     * The contents of this file are subject to the Initial Developer's
5     * Public License Version 1.0 (the "License"); you may not use this
6     * file except in compliance with the License. You may obtain a copy
7     * of the License here:
8     *
9     * http://www.firebirdsql.org/index.php?op=doc&id=idpl
10     *
11     * Software distributed under the License is distributed on an "AS
12     * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13     * implied. See the License for the specific language governing rights
14     * and limitations under the License.
15     *
16     * The Initial Developer of the Original Code is Tony Whyman.
17     *
18     * The Original Code is (C) 2011 Tony Whyman, MWA Software
19     * (http://www.mwasoftware.co.uk).
20     *
21     * All Rights Reserved.
22     *
23     * Contributor(s): ______________________________________.
24     *
25     *)
26     unit IBVersion;
27    
28     {$IFDEF FPC}
29     {$mode objfpc}{$H+}
30     {$codepage UTF8}
31     {$IF FPC_FULLVERSION < 30000 }
32     {$ERROR FPC Version 3.0.0 or later is required}
33     {$ENDIF}
34     {$ENDIF}
35    
36     interface
37    
38     uses
39     Classes, SysUtils;
40    
41     const
42     IBX_MAJOR = 2;
43 tony 221 IBX_MINOR = 3;
44 tony 241 IBX_RELEASE = 1;
45     IBX_VERSION = '2.3.1';
46 tony 209
47     implementation
48    
49     end.
50