Componentes.Terceros.RemObj.../official/5.0.35.741/RemObjects SDK for Delphi/Templates/RO/Cgi/$PRJNAME.dpr
2009-02-27 15:16:56 +00:00

20 lines
392 B
ObjectPascal

program $PRJNAME;
{$APPTYPE CONSOLE}
{#ROGEN:$SVCLIBNAME.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
WebBroker,
CGIApp,
Unit1 in 'Unit1.pas' {WebModule1: TWebModule};
{$R *.RES}
{$R RODLFile.RES} // RemObjects: Careful, do not remove!
begin
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.