Files
mirror-processhacker/2.x/trunk/plugins/ProcessHacker2.Api/Native/SeApi.cs
T
wj32 42a383a530 expanded ProcessHacker2.Api library
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3598 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-09-11 11:16:00 +00:00

27 lines
521 B
C#

using System;
using System.Runtime.InteropServices;
namespace ProcessHacker2.Api
{
public enum SecurityInformation : uint
{
Owner = 0x1,
Group = 0x2,
Dacl = 0x4,
Sacl = 0x8,
Label = 0x10,
ProtectedDacl = 0x80000000,
ProtectedSacl = 0x40000000,
UnprotectedDacl = 0x20000000,
UnprotectedSacl = 0x10000000
}
public enum TokenElevationType
{
Default = 1,
Full,
Limited
}
}