repositories
/
deb_libcec.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
cec-client: added -m/--monitor startup options, which will start a monitor-only clien...
[deb_libcec.git]
/
src
/
cec-config-gui
/
Program.cs
1
using System;
2
using System.Windows.Forms;
3
4
namespace 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
}