lazarus/components/fpweb/demo/image/imagedemo.lpr
mattias 65da460e39 fpweb: added demos from Michael Van Canneyt
git-svn-id: trunk@12880 -
2007-11-15 08:09:00 +00:00

15 lines
219 B
ObjectPascal

program imagedemo;
{$mode objfpc}{$H+}
uses
fpWeb,fpCGI, wmimage;
begin
Application.Title:='cgiproject1';
Application.Initialize;
Application.CreateForm(TFPWebModule1, FPWebModule1);
Application.Run;
end.