Componentes.Terceros.RemObj.../internal/5.0.23.613/1/RemObjects SDK for Delphi/Samples/Async/AsyncServer.dpr
david 472097efe5 - Eliminadas las librerías para Delphi 6 (Dcu\D6) en RO y DA.
- Recompilación de todos los paquetes de RO para poner RemObjects_Core_D10 como paquete de runtime/designtime.

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

21 lines
528 B
ObjectPascal

program AsyncServer;
{#ROGEN:AsyncLibrary.rodl} // RemObjects: Careful, do not remove!
uses
Forms,
AsyncServerMain in 'AsyncServerMain.pas' {AsyncServerMainForm},
AsyncLibrary_Intf in 'AsyncLibrary_Intf.pas',
AsyncLibrary_Invk in 'AsyncLibrary_Invk.pas',
AsyncService_Impl in 'AsyncService_Impl.pas';
{$R *.RES}
{$R RODLFile.res}
begin
Application.Initialize;
Application.Title := 'Async Server';
Application.CreateForm(TAsyncServerMainForm, AsyncServerMainForm);
Application.Run;
end.