checking in all the old panacean stuff

This commit is contained in:
2016-07-25 15:42:39 -04:00
parent c996cdd81f
commit 8fd9e44ae5
1210 changed files with 220657 additions and 0 deletions

View 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());
}
}
}