|
- using Shadowsocks.Controller;
- using Shadowsocks.Properties;
- using Shadowsocks.View;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Threading;
- using System.Windows.Forms;
-
- namespace Shadowsocks
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Util.Utils.ReleaseMemory(true);
- using (Mutex mutex = new Mutex(false, "Global\\Shadowsocks_" + Application.StartupPath.GetHashCode()))
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
-
- if (!mutex.WaitOne(0, false))
- {
- Process[] oldProcesses = Process.GetProcessesByName("Shadowsocks");
- if (oldProcesses.Length > 0)
- {
- Process oldProcess = oldProcesses[0];
- }
- MessageBox.Show(I18N.GetString("Find Shadowsocks icon in your notify tray.") + "\n" +
- I18N.GetString("If you want to start multiple Shadowsocks, make a copy in another directory."),
- I18N.GetString("Shadowsocks is already running."));
- return;
- }
- Directory.SetCurrentDirectory(Application.StartupPath);
- #if !DEBUG
- Logging.OpenLogFile();
- #endif
- ShadowsocksController controller = new ShadowsocksController();
-
- MenuViewController viewController = new MenuViewController(controller);
-
- controller.Start();
-
- Application.Run();
- }
- }
- }
- }
|