From b59b7b8733533aed4b97da6679e455df63049e23 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 20 Feb 2010 21:59:23 +0000 Subject: WinGui: - Some tweaks to the StyleCop Settings File. - Some abbreviations added to the ReSharper config file. - Some more warnings cleaned up. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3130 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/Program.cs | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'win/C#/Program.cs') diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 282f9f528..805d339af 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -1,23 +1,25 @@ -/* Program.cs - - This file is part of the HandBrake source code. - Homepage: . - It may be used under the terms of the GNU General Public License. */ - -using System; -using System.Windows.Forms; -using System.IO; -using Handbrake.Presets; +/* Program.cs + This file is part of the HandBrake source code. + Homepage: . + It may be used under the terms of the GNU General Public License. */ namespace Handbrake { - static class Program + using System; + using System.IO; + using System.Windows.Forms; + using Presets; + + /// + /// HandBrake Starts Here + /// + public static class Program { /// /// The main entry point for the application. /// [STAThread] - static void Main() + public static void Main() { Screen scr = Screen.PrimaryScreen; if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620)) @@ -40,5 +42,4 @@ namespace Handbrake } } } - } \ No newline at end of file -- cgit v1.2.3