Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / wiki / test / wikisearchdemo.lpr
Size: Mime:
program WikiSearchDemo;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms, WikiSearchMain, WikiHelpManager, WikiSearchOptions
  { you can add units after this };

{$R *.res}

begin
  Application.Title:='project1';
  RequireDerivedFormResource := True;
  Application.Initialize;
  Application.CreateForm(TWikiSearchDemoForm, WikiSearchDemoForm);
  Application.Run;
end.