summaryrefslogtreecommitdiff
path: root/plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr')
-rw-r--r--plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr b/plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr
new file mode 100644
index 0000000000..8942f8b61d
--- /dev/null
+++ b/plugins/!Deprecated/MirandaNGHistoryToDB/IMDownloaderComponent/Demo/DownLoaderTest.dpr
@@ -0,0 +1,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.