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