mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
cd5f311ab5
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@931 21ef857c-d57f-4fe0-8362-d861dc6d29cd
21 lines
489 B
C#
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());
|
|
}
|
|
}
|
|
}
|