Componentes.Terceros.RemObj.../official/5.0.24.615/RemObjects SDK for Delphi/Samples/Variants/VariantsServer.dpr

21 lines
542 B
ObjectPascal

program VariantsServer;
{#ROGEN:VariantsLibrary.rodl} // RemObjects: Careful, do not remove!
uses
uROComInit,
Forms,
VariantsServerMain in 'VariantsServerMain.pas' {VariantsServerMainForm},
VariantsLibrary_Intf in 'VariantsLibrary_Intf.pas',
VariantsLibrary_Invk in 'VariantsLibrary_Invk.pas',
VariantsService_Impl in 'VariantsService_Impl.pas';
{$R *.res}
{$R RODLFile.res}
begin
Application.Initialize;
Application.CreateForm(TVariantsServerMainForm, VariantsServerMainForm);
Application.Run;
end.