program DataSnapServer; uses uROComInit, Forms, DataSnapServerMain in 'DataSnapServerMain.pas' {DataSnapServerMainForm}, DataSnapServerData in 'DataSnapServerData.pas' {DataSnapServerDataForm: TRODataSnapModule}, DataSnapServerData2 in 'DataSnapServerData2.pas' {TDataSnapServerDataForm2: TRODataSnapModule}, DataSnapServerInterfaces in 'DataSnapServerInterfaces.pas'; {$R *.res} begin Application.Initialize; Application.Title := 'DataSnap Server'; Application.CreateForm(TDataSnapServerMainForm, DataSnapServerMainForm); Application.Run; end.