home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / InetXCenter / inetxcenterisapi.dpr < prev    next >
Text File  |  1999-08-11  |  412b  |  22 lines

  1. { ISAPI version of InternetExpress Center sample application }
  2.  
  3. library InetXCenterISAPI;
  4.  
  5. uses
  6.   WebBroker,
  7.   ISAPIApp,
  8.   InextXCenterModule in 'InextXCenterModule.pas' {WebModule2: TWebModule};
  9.  
  10. {$R *.RES}
  11.  
  12. exports
  13.   GetExtensionVersion,
  14.   HttpExtensionProc,
  15.   TerminateExtension;
  16.  
  17. begin
  18.   Application.Initialize;
  19.   Application.CreateForm(TWebModule2, WebModule2);
  20.   Application.Run;
  21. end.
  22.