diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:22:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-18 05:22:57 +0000 |
commit | 3b3ea167f01d24cddc2b59453a000969a42d2234 (patch) | |
tree | eb6a4ef86348df4c0ae5558a45ca1f9e7d83060f /Projects/LEDNotifier/WindowsApp/Program.cs | |
parent | 3d6508c9b9505cb3393b7c12df1a0c87f7828bbe (diff) | |
download | lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.tar.gz lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.tar.bz2 lufa-3b3ea167f01d24cddc2b59453a000969a42d2234.zip |
Renamed HotmailNotifier project to LEDNotifier.
Diffstat (limited to 'Projects/LEDNotifier/WindowsApp/Program.cs')
-rw-r--r-- | Projects/LEDNotifier/WindowsApp/Program.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Projects/LEDNotifier/WindowsApp/Program.cs b/Projects/LEDNotifier/WindowsApp/Program.cs new file mode 100644 index 000000000..1dd229d91 --- /dev/null +++ b/Projects/LEDNotifier/WindowsApp/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());
+ }
+ }
+}
|