diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-13 04:32:33 +0000 |
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-13 04:32:33 +0000 |
| commit | ac61b81a0b20b86a4865d5e2802f704ad1075541 (patch) | |
| tree | d317751beab3b669d931f9bbff83db8680e510a9 /Projects/TempDataLogger/TempLogHostApp/Program.cs | |
| parent | d3e00ce1eca6a7736f30b2e93992d0d5a6161de6 (diff) | |
| download | lufa-ac61b81a0b20b86a4865d5e2802f704ad1075541.tar.gz lufa-ac61b81a0b20b86a4865d5e2802f704ad1075541.tar.bz2 lufa-ac61b81a0b20b86a4865d5e2802f704ad1075541.zip | |
Add first lot of AVRStudio project files for some of the library projects.
Diffstat (limited to 'Projects/TempDataLogger/TempLogHostApp/Program.cs')
| -rw-r--r-- | Projects/TempDataLogger/TempLogHostApp/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Projects/TempDataLogger/TempLogHostApp/Program.cs b/Projects/TempDataLogger/TempLogHostApp/Program.cs new file mode 100644 index 000000000..2588e60c1 --- /dev/null +++ b/Projects/TempDataLogger/TempLogHostApp/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace Project1HostApp +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmDataloggerSettings()); + } + } +} |
