LibCecSharp: more cosmetics
[deb_libcec.git] / src / cec-config-gui / Program.cs
CommitLineData
006b76b9 1using System;
006b76b9
LOK
2using System.Windows.Forms;
3
4namespace CecConfigGui
5{
6 static class Program
7 {
8 /// <summary>
9 /// The main entry point for the application.
10 /// </summary>
11 [STAThread]
12 static void Main()
13 {
14 Application.EnableVisualStyles();
15 Application.SetCompatibleTextRenderingDefault(false);
16 Application.Run(new CecConfigGUI());
17 }
18 }
19}