X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=win%2FC%23%2FProgram.cs;h=805d339afec6c97bcb44dcba9e7515eb54873b21;hb=bbadff781cdcb5c4676d26141c493939ea28b769;hp=282f9f528e99a2ba756b823268533bcd19f3f3b3;hpb=bbc3639d2ba67a312aa383593c5d9c037f0ccd5e;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 282f9f52..805d339a 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