ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/dclibx.pas
Revision: 80
Committed: Mon Jan 1 11:31:07 2018 UTC (6 years, 3 months ago) by tony
Content type: text/x-pascal
File size: 641 byte(s)
Log Message:
Fixes merged into public release

File Contents

# User Rev Content
1 tony 19 { This file was automatically created by Lazarus. Do not edit!
2     This source is only used to compile and install the package.
3     }
4    
5 tony 21 unit dclibx;
6 tony 19
7 tony 80 {$warn 5023 off : no warning about unused units}
8 tony 19 interface
9    
10     uses
11 tony 80 IBDBReg, IBEventsEditor, IBTransactionEdit, IBDatabaseEdit,
12 tony 19 ibdeletesqleditor, IBGeneratorEditor, ibinsertsqleditor, ibmodifysqleditor,
13 tony 80 ibselectsqleditor, ibupdatesqleditor, ibsqleditor, dbFieldLinkPropEditor,
14     dbFieldListPropEditor, IBDSDialogs, LazarusPackageIntf;
15 tony 19
16 tony 21 implementation
17 tony 19
18     procedure Register;
19     begin
20     RegisterUnit('IBDBReg', @IBDBReg.Register);
21     end;
22    
23     initialization
24     RegisterPackage('dclibx', @Register);
25     end.