Files
panaceantech/sFTPlugins/Register/Program.cs

31 lines
797 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
using IntelliProtectorService;
using System.Runtime.InteropServices;
using System.IO;
using System.Reflection;
namespace Register
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (!IntelliProtector.Init())
throw new Exception("IntelliProtector Failed to Initialize");
//if (!IntelliProtector.Init())
// Application.Run(new Register());
}
}
}