lazarus/components/chmhelp/democontrol/project1.lpr
mattias ac41567764 added chm help viewer from Andrew Haines
git-svn-id: trunk@8331 -
2005-12-16 16:14:30 +00:00

16 lines
235 B
ObjectPascal

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