Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ OBJECT_ATTRIBUTES()

unsafe Interop.OBJECT_ATTRIBUTES.OBJECT_ATTRIBUTES ( UNICODE_STRING * objectName,
ObjectAttributes attributes,
IntPtr rootDirectory,
SECURITY_QUALITY_OF_SERVICE * securityQualityOfService = null )
inline

Definition at line 1737 of file Interop.cs.

1738 {
1739 Length = (uint)sizeof(OBJECT_ATTRIBUTES);
1740 RootDirectory = rootDirectory;
1741 ObjectName = objectName;
1742 Attributes = attributes;
1743 SecurityDescriptor = null;
1744 SecurityQualityOfService = securityQualityOfService;
1745 }
unsafe void * SecurityDescriptor
Definition Interop.cs:1733
unsafe SECURITY_QUALITY_OF_SERVICE * SecurityQualityOfService
Definition Interop.cs:1735
unsafe OBJECT_ATTRIBUTES(UNICODE_STRING *objectName, ObjectAttributes attributes, IntPtr rootDirectory, SECURITY_QUALITY_OF_SERVICE *securityQualityOfService=null)
Definition Interop.cs:1737
unsafe UNICODE_STRING * ObjectName
Definition Interop.cs:1729
ObjectAttributes Attributes
Definition Interop.cs:1731

References Interop.OBJECT_ATTRIBUTES.Attributes, Interop.OBJECT_ATTRIBUTES.Length, Interop.OBJECT_ATTRIBUTES.ObjectName, Interop.OBJECT_ATTRIBUTES.RootDirectory, Interop.OBJECT_ATTRIBUTES.SecurityDescriptor, and Interop.OBJECT_ATTRIBUTES.SecurityQualityOfService.