repositories
/
deb_libcec.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
cec: don't transmit in CCECProcessor while keeping the mutex locked. don't set the...
[deb_libcec.git]
/
src
/
cec-config-gui
/
Program.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Windows.Forms;
4
5
namespace CecConfigGui
6
{
7
static class Program
8
{
9
/// <summary>
10
/// The main entry point for the application.
11
/// </summary>
12
[STAThread]
13
static void Main()
14
{
15
Application.EnableVisualStyles();
16
Application.SetCompatibleTextRenderingDefault(false);
17
Application.Run(new CecConfigGUI());
18
}
19
}
20
}