21 lines
674 B
ObjectPascal
21 lines
674 B
ObjectPascal
program ServiceMethods_Server;
|
|
|
|
uses
|
|
uROCOMInit,
|
|
Forms,
|
|
ServiceMethods_ServerMain in 'ServiceMethods_ServerMain.pas' {ServiceMethods_ServerMainForm},
|
|
ServiceMethodsLibrary_Intf in 'ServiceMethodsLibrary_Intf.pas',
|
|
ServiceMethodsLibrary_Invk in 'ServiceMethodsLibrary_Invk.pas',
|
|
ServiceMethods_Service_Impl in 'ServiceMethods_Service_Impl.pas' {ServiceMethods_Service: TDataAbstractService};
|
|
|
|
{#ROGEN:ServiceMethodsLibrary.rodl}// RemObjects: Careful, do not remove!
|
|
{$R RODLFILE.res}
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TServiceMethods_ServerMainForm, ServiceMethods_ServerMainForm);
|
|
Application.Run;
|
|
end.
|
|
|