Files
lazarus-ccr/components/lazbarcodes/examples/demo/LazBarcodeDemo.lpr
wp_xxyyzz 99bd06cca6 LazBarcodes: Add QRClock demo project.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8356 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2022-07-20 12:29:04 +00:00

26 lines
413 B
ObjectPascal

program LazBarcodeDemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, main
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.