2018-12-03 04:35:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2019-03-20 10:02:18 +00:00
|
|
|
|
namespace network.loki.lokinet.win32.ui
|
2018-12-03 04:35:49 +00:00
|
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
2019-03-20 10:02:18 +00:00
|
|
|
|
public static OperatingSystem os_id = Environment.OSVersion;
|
|
|
|
|
public static PlatformID platform = os_id.Platform;
|
2018-12-03 04:35:49 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2019-03-20 10:02:18 +00:00
|
|
|
|
Application.Run(new main_frame());
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
main_frame.lokiNetDaemon.Kill();
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{ }
|
2018-12-03 04:35:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|