Componentes.Terceros.RemObj.../internal/6.0.43.801/1/RemObjects Samples/RemObjects SDK for Delphi/Variants/VariantsServer.dpr
2010-01-29 16:17:43 +00:00

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.