git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.SDAC@3 6f543ec7-021b-7e4c-98c9-62eafc7fb9a8
18 lines
321 B
ObjectPascal
18 lines
321 B
ObjectPascal
program Server;
|
|
|
|
uses
|
|
Forms,
|
|
ServerForm in 'ServerForm.pas' {fmServer},
|
|
Server_TLB in 'Server_TLB.pas',
|
|
Data in 'Data.pas' {Datas: TRemoteDataModule} {Datas: CoClass};
|
|
|
|
{$R *.TLB}
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfmServer, fmServer);
|
|
Application.Run;
|
|
end.
|