program AutoServer; {#ROGEN:AutoServer.rodl} // RemObjects: Careful, do not remove! uses uROComInit, Forms, AutoServer_ServerMain in 'AutoServer_ServerMain.pas' {AutoServer_ServerMainForm}, AutoServerLibrary_Intf in 'AutoServerLibrary_Intf.pas', AutoServerLibrary_Invk in 'AutoServerLibrary_Invk.pas', AutoServerService_Impl in 'AutoServerService_Impl.pas'; {$R *.res} {$R RODLFile.res} begin Application.Initialize; Application.Title := 'AutoServer - Server'; Application.CreateForm(TAutoServer_ServerMainForm, AutoServer_ServerMainForm); Application.Run; end.