lazarus/components/chmhelp/democontrol/project1.lpr
vincents aa8e6f8e1a lhelp: fixed compilation of democontrol example
git-svn-id: trunk@17124 -
2008-10-24 12:48:11 +00:00

16 lines
252 B
ObjectPascal

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