Files
wj32 cd5f311ab5 Bug Check now fully works (plus a database of bug check codes)
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@931 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-03-26 10:13:56 +00:00

21 lines
489 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace BugCheck
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new BugCheckWindow());
}
}
}