From b630b8222027387a769605d8feac4cc0f406a50b Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 21 May 2012 07:42:17 +0000 Subject: added Langpack Suite git-svn-id: http://svn.miranda-ng.org/main/trunk@115 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/Langpack Suite/Program.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tools/Langpack Suite/Program.cs (limited to 'tools/Langpack Suite/Program.cs') diff --git a/tools/Langpack Suite/Program.cs b/tools/Langpack Suite/Program.cs new file mode 100644 index 0000000000..79ed85d9c9 --- /dev/null +++ b/tools/Langpack Suite/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace Langpack_Suite +{ + static class Program + { + /// + /// Главная точка входа для приложения. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} -- cgit v1.2.3