File: kascomp.pas

package info (click to toggle)
doublecmd 0.9.10-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,264 kB
  • sloc: pascal: 324,944; ansic: 5,998; sh: 771; makefile: 196; python: 119; xml: 8; javascript: 4
file content (26 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ This file was automatically created by Lazarus. Do not edit!
  This source is only used to compile and install the package.
 }

unit KASComp;

interface

uses
  KASToolBar, KASProgressBar, KASPathEdit, KASToolItems, KASComboBox, 
  KASCDEdit, LazarusPackageIntf;

implementation

procedure Register;
begin
  RegisterUnit('KASToolBar', @KASToolBar.Register);
  RegisterUnit('KASProgressBar', @KASProgressBar.Register);
  RegisterUnit('KASPathEdit', @KASPathEdit.Register);
  RegisterUnit('KASComboBox', @KASComboBox.Register);
  RegisterUnit('KASCDEdit', @KASCDEdit.Register);
end;

initialization
  RegisterPackage('KASComp', @Register);
end.