diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-20 05:40:17 +0000 | 
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-12-20 05:40:17 +0000 | 
| commit | e73f05b8b2de5485c97a305b4a7e940bb5636f49 (patch) | |
| tree | d86dad0162c1e87065bad8e79896507facb404cb /Projects/LEDNotifier/CPUUsageApp/Program.cs | |
| parent | 901e26edd893a73ac38bdf95a7a72c48bdc1d07b (diff) | |
| download | lufa-e73f05b8b2de5485c97a305b4a7e940bb5636f49.tar.gz lufa-e73f05b8b2de5485c97a305b4a7e940bb5636f49.tar.bz2 lufa-e73f05b8b2de5485c97a305b4a7e940bb5636f49.zip  | |
Added CPU Usage monitor host app to the LEDNotifier project.
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 000000000..02d83c2b6 --- /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());
 +        }
 +    }
 +}
  | 
