1
0
mirror of https://git.code.sf.net/p/lazarus-ccr/dcpcrypt synced 2024-11-18 16:31:48 +02:00
lazarus-dcpcrypt/dcplazarus.pas
Graeme Geldenhuys 63da555da4 Initial commit.
* This is is the standard v2 beta3 from Lazarus CCR
  which in turn is a FPC + Lazarus port from
  http://www.cityinthesky.co.uk/cryptography.html

* Only change I made, was to split the 'dcpcrypt' package
  into two. One is a GUI independant package. And the other
  is the Lazarus IDE (design time) package. Only the latter
  requires Lazarus. So the runtime only package can be used
  with non-LCL applications too, like fpGUI.
2009-11-13 16:49:44 +02:00

22 lines
354 B
ObjectPascal

{ This file was automatically created by Lazarus. do not edit!
This source is only used to compile and install the package.
}
unit DCPlazarus;
interface
uses
DCPreg, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('DCPreg', @DCPreg.Register);
end;
initialization
RegisterPackage('DCPlazarus', @Register);
end.