lazarus/examples/helphtml/htmlhelp1.lpr
mattias 84a4d25163 added example for HTML help
git-svn-id: trunk@9311 -
2006-05-19 21:56:07 +00:00

19 lines
303 B
ObjectPascal

program HTMLHelp1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.