Files
mirror-processhacker/trunk/ProcessHacker.Native/Security/SymbolicLinkAccess.cs
T
wj32 171674811b added Access definitions for many more NT objects
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1298 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-05-19 08:47:59 +00:00

14 lines
261 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum SymbolicLinkAccess : uint
{
Query = 0x1,
All = StandardRights.Required | Query
}
}