summaryrefslogtreecommitdiff
path: root/plugins/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr
blob: 8942f8b61db7f9284316b006c62384160372c12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
program DownLoaderTest;

uses
  Forms,
  DownLoaderTestUnit in 'DownLoaderTestUnit.pas' {MainForm};

{$R *.res}

begin
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  Application.Title := 'IM Downloader Demo';
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
end.