lazarus-ccr/components/lazbarcodes/packages/lazbarcodes.pas
Joshy 1dae858558 First commit. Tested on Windows only. It provides 5 controls under the "Laz Barcodes 2D" tab.
* QR code
* MicroQR
* Aztec
* Aztec Rune
* DataMatrix

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1758 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-07-22 18:48:22 +00:00

22 lines
367 B
ObjectPascal

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