You've already forked lazarus-ccr
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:
22
components/lazbarcodes/src/lazbarcodes.pas
Normal file
22
components/lazbarcodes/src/lazbarcodes.pas
Normal 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.
|
Reference in New Issue
Block a user