Files
mirror-processhacker/1.x/trunk/ProcessHacker.Native/Security/TransactionAccess.cs
T
dmex e0579b0393 PH1.x: Code Cleanup/Fixes, Initial KPH2 support
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@4785 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2011-10-30 10:35:02 +00:00

25 lines
935 B
C#

using System;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum TransactionAccess : uint
{
QueryInformation = 0x0001,
SetInformation = 0x0002,
Enlist = 0x0004,
Commit = 0x0008,
Rollback = 0x0010,
Propagate = 0x0020,
RightReserved1 = 0x0040,
GenericRead = StandardRights.Read | QueryInformation | StandardRights.Synchronize,
GenericWrite = StandardRights.Write | SetInformation | Commit | Enlist | Rollback |
Propagate | StandardRights.Synchronize,
GenericExecute = StandardRights.Execute | Commit | Rollback | StandardRights.Synchronize,
All = StandardRights.Required | GenericRead | GenericWrite | GenericExecute,
ResourceManagerRights = GenericRead | StandardRights.Write | SetInformation |
Enlist | Rollback | Propagate | StandardRights.Synchronize
}
}