Componentes.Terceros.RemObj.../internal/5.0.23.613/1/RemObjects SDK for Delphi/Templates/RO/Isapi/$PRJNAME.dpr
david f0e35ec439 - Eliminadas las librerías para Delphi 6 (Dcu\D6) en RO y DA.
- Recompilación de RO para poner RemObjects_Core_D10 como paquete de runtime/designtime.

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@3 b6239004-a887-0f4b-9937-50029ccdca16
2007-09-10 10:40:17 +00:00

31 lines
622 B
ObjectPascal

library $PRJNAME;
{#ROGEN:$SVCLIBNAME.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
ActiveX,
ComObj,
WebBroker,
ISAPIApp,
Unit1 in 'Unit1.pas' {WebModule1: TWebModule};
{$R *.RES}
{$R RODLFile.RES} // RemObjects: Careful, do not remove!
{
Important note: if you have Delphi 6 you should add the unit ISAPIThreadPool to the above list
}
exports
GetExtensionVersion,
HttpExtensionProc,
TerminateExtension;
begin
CoInitFlags := COINIT_MULTITHREADED;
Application.Initialize;
Application.CreateForm(TWebModule1, WebModule1);
Application.Run;
end.