Interop.Windows.NtDll.ObjectAttributes
struct ObjectAttributes
OBJECT_ATTRIBUTES structure.
The OBJECT_ATTRIBUTES structure specifies attributes that can be applied to objects or object handles by routines
that create objects and/or return handles to objects.
namespace Interop.Windows.NtDll
{
internal struct ObjectAttributes
{
public uint Length;
public IntPtr RootDirectory;
public unsafe UnicodeString* ObjectName;
public ObjectAttributeFlags Attributes;
public unsafe void* SecurityDescriptor;
public unsafe SecurityQualityOfService* SecurityQoS;
public unsafe ObjectAttributes(UnicodeString* objectName, ObjectAttributeFlags attributes, IntPtr rootDirectory, SecurityQualityOfService* securityQos);
}
}