source: ModularSystem/ModularSystem.pas

Last change on this file was 431, checked in by chronos, 12 years ago
  • Added: ModuleManager modules updating notification using Update, BeginUpdate, EndUpdate.
  • Added: Module state Enabled and methods Enable and Disable.
  • Modified: Generalized dependency enumeration.
  • Added: Generalized module list forms for user control.
File size: 419 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit ModularSystem;
6
7interface
8
9uses
10 UModularSystem, UFormModuleList, LazarusPackageIntf;
11
12implementation
13
14procedure Register;
15begin
16 RegisterUnit('UModularSystem', @UModularSystem.Register);
17end;
18
19initialization
20 RegisterPackage('ModularSystem', @Register);
21end.
Note: See TracBrowser for help on using the repository browser.