Files
lazarus-ccr/components/captcha/demos/runtime/capcha_demo.lpr

25 lines
395 B
ObjectPascal
Raw Normal View History

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