mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b02427417c
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
27 lines
990 B
C#
27 lines
990 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
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
|
|
}
|
|
}
|