home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Webserv / iservcgi.dpr next >
Text File  |  1999-08-11  |  306b  |  18 lines

  1. program iservcgi;
  2.  
  3. uses
  4.   WebBroker,
  5.   HTTPApp,
  6.   CGIApp,
  7.   main in 'Main.pas' {CustomerInfoModule: TWebModule};
  8.  
  9. {$R *.RES}
  10. {$APPTYPE CONSOLE}  // CGI application
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TCustomerInfoModule, CustomerInfoModule);
  15.   Application.Run;
  16. end.
  17.  
  18.