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
18 lines
363 B
C#
18 lines
363 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BugCheck
|
|
{
|
|
public struct BugCheckCode
|
|
{
|
|
public uint Code;
|
|
public string Name;
|
|
public string Description;
|
|
public string Param1;
|
|
public string Param2;
|
|
public string Param3;
|
|
public string Param4;
|
|
}
|
|
}
|