Componentes.Terceros.RemObj.../official/5.0.24.615/RemObjects SDK for Delphi/Samples/Async/AsyncServer.dpr

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.