home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Source / Vcl / httpsrvr.dpr < prev    next >
Text File  |  1999-08-11  |  318b  |  20 lines

  1. library HTTPSrvr;
  2.  
  3. uses
  4.   WebBroker,
  5.   ISAPIApp,
  6.   HTTPIntr in 'HTTPIntr.pas' {HTTPServer: TWebModule};
  7.  
  8. {$R *.RES}
  9.  
  10. exports
  11.   GetExtensionVersion,
  12.   HttpExtensionProc,
  13.   TerminateExtension;
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(THTTPServer, HTTPServer);
  18.   Application.Run;
  19. end.
  20.