diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-20 05:40:17 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-12-20 05:40:17 +0000 |
| commit | e2ce8e051875b4eea205d887467de02cdbe6ba99 (patch) | |
| tree | d86dad0162c1e87065bad8e79896507facb404cb /Projects/LEDNotifier/CPUUsageApp/Program.cs | |
| parent | e6720302570ec0346ddda143901d3284289183d1 (diff) | |
Added CPU Usage monitor host app to the LEDNotifier project.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@991 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/LEDNotifier/CPUUsageApp/Program.cs')
| -rw-r--r-- | Projects/LEDNotifier/CPUUsageApp/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Projects/LEDNotifier/CPUUsageApp/Program.cs b/Projects/LEDNotifier/CPUUsageApp/Program.cs new file mode 100644 index 00000000..02d83c2b --- /dev/null +++ b/Projects/LEDNotifier/CPUUsageApp/Program.cs @@ -0,0 +1,21 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Windows.Forms;
+
+namespace CPUMonitor
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new frmCPU());
+ }
+ }
+}
|
