checking in all the old panacean stuff
This commit is contained in:
30
sFTPlugins/Register/Program.cs
Normal file
30
sFTPlugins/Register/Program.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user