File: viewerpackage.pas

package info (click to toggle)
doublecmd 0.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 32,764 kB
  • ctags: 34,016
  • sloc: pascal: 273,752; ansic: 5,938; sh: 733; makefile: 194; python: 116; xml: 107
file content (21 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ This file was automatically created by Lazarus. do not edit ! 
  This source is only used to compile and install the package.
 }

unit viewerpackage; 

interface

uses
  ViewerControl, UnicodeUtils, LazarusPackageIntf;

implementation

procedure Register; 
begin
  RegisterUnit('ViewerControl', @ViewerControl.Register); 
end; 

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