mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 01:38:17 +02:00
24 lines
508 B
ObjectPascal
24 lines
508 B
ObjectPascal
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.CreateForm(TWikiSearchOptsWnd, WikiSearchOptsWnd);
|
|
Application.Run;
|
|
end.
|
|
|