lazarus/examples/codepageconverter/lazconverter.lpr
mattias 07fe86ea7a updated codepageconverter from boris arko
git-svn-id: trunk@7243 -
2005-06-17 14:51:19 +00:00

16 lines
264 B
ObjectPascal

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