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
This commit is contained in:
Joshy
2011-07-22 18:48:22 +00:00
parent d77d7561f0
commit 1dae858558
25 changed files with 16970 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ 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
zint, uaztec, ubasic, udatamatrix, uhelper, uqr, ureedsolomon, urender,
usjis, ubarcodes, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('ubarcodes', @ubarcodes.Register);
end;
initialization
RegisterPackage('lazbarcodes', @Register);
end.