mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
f2f60651db
* uses the proper way of detecting .NET processes - COM objects (in turn making ProcessHacker.exe huge) * changed the default color for elevated processes to be a bit more orange git-svn-id: svn://svn.code.sf.net/p/processhacker/code@676 21ef857c-d57f-4fe0-8362-d861dc6d29cd
29 lines
772 B
C#
29 lines
772 B
C#
// <file>
|
|
// <copyright see="prj:///doc/copyright.txt"/>
|
|
// <license see="prj:///doc/license.txt"/>
|
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
|
// <version>$Revision: 2077 $</version>
|
|
// </file>
|
|
|
|
#pragma warning disable 1591
|
|
|
|
namespace Debugger.Wrappers.CorDebug
|
|
{
|
|
using System;
|
|
|
|
|
|
public static class _SECURITY_ATTRIBUTES
|
|
{
|
|
public static Debugger.Interop.CorDebug._SECURITY_ATTRIBUTES Default;
|
|
|
|
static unsafe _SECURITY_ATTRIBUTES() {
|
|
Default = new Debugger.Interop.CorDebug._SECURITY_ATTRIBUTES();
|
|
Default.bInheritHandle = 0;
|
|
Default.lpSecurityDescriptor = IntPtr.Zero;
|
|
Default.nLength = (uint)sizeof(Debugger.Interop.CorDebug._SECURITY_ATTRIBUTES);
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma warning restore 1591
|