Componentes.Terceros.RemObj.../internal/5.0.23.613/1/RemObjects SDK for Delphi/Samples/MegaDemo/MegaDemoISAPI.dpr
david 2824855ea7 - Modificación del paquete RemObjects_Core_D10 para que sea un paquete de runtime/designtime (antes era designtime sólo)
- Recompilación en Delphi10 de todos los paquetes de RO para generar las DCU's en Lib\D10
- Recompilación en Delphi10 de todos los paquetes de DA para generar las DCU's en Lib\D10

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.RemObjects@9 b6239004-a887-0f4b-9937-50029ccdca16
2007-09-10 14:06:19 +00:00

33 lines
872 B
ObjectPascal

library MegaDemoISAPI;
{#ROGEN:MegaDemoLibrary.rodl} // RemObjects: Careful, do not remove!
uses
ActiveX,
ComObj,
WebBroker,
ISAPIApp,
MegaDemoISAPIMain in 'MegaDemoISAPIMain.pas' {MegaDemoISAPIMainForm: TROWebModule},
MegaDemoLibrary_Intf in 'MegaDemoLibrary_Intf.pas',
MegaDemoLibrary_Invk in 'MegaDemoLibrary_Invk.pas',
MegaDemoService_Impl in 'MegaDemoService_Impl.pas' {MegaService: TDARemoteService};
{$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(TMegaDemoISAPIMainForm, MegaDemoISAPIMainForm);
Application.Run;
end.