diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:25:51 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:25:51 +0000 |
commit | 47384e3c5029381d8b9fff2dbacbeec7c1e71845 (patch) | |
tree | 8c8aa2947e9f40befade0d1053be5d3b0c43e077 /Projects/LEDNotifier/HotmailNotifierApp/Program.cs | |
parent | 3b3ea167f01d24cddc2b59453a000969a42d2234 (diff) | |
download | lufa-47384e3c5029381d8b9fff2dbacbeec7c1e71845.tar.gz lufa-47384e3c5029381d8b9fff2dbacbeec7c1e71845.tar.bz2 lufa-47384e3c5029381d8b9fff2dbacbeec7c1e71845.zip |
Rename HotmailNotifier project files to LEDNotifier.
Diffstat (limited to 'Projects/LEDNotifier/HotmailNotifierApp/Program.cs')
-rw-r--r-- | Projects/LEDNotifier/HotmailNotifierApp/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Projects/LEDNotifier/HotmailNotifierApp/Program.cs b/Projects/LEDNotifier/HotmailNotifierApp/Program.cs new file mode 100644 index 000000000..1dd229d91 --- /dev/null +++ b/Projects/LEDNotifier/HotmailNotifierApp/Program.cs @@ -0,0 +1,20 @@ +using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+
+namespace TestWinForms
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new MailNotifier());
+ }
+ }
+}
|