Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
SID (Structures)
.
C# Definition:
struct SID_IDENTIFIER_AUTHORITY
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst=6)]
public byte[] Value;
public SID_IDENTIFIER_AUTHORITY(byte[] value)
{
Value = value;
}
Structure SID_IDENTIFIER_AUTHORITY
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=6)> _
Public Value() As Byte
Public Sub New(ByVal val As Byte())
Value = val
End Sub
<StructLayout(LayoutKind.Sequential)> _
Public Structure SID
Public Revision As Byte
Public SubAuthorityCount As Byte
Public IdentifierAuthority As SID_IDENTIFIER_AUTHORITY
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=ANYSIZE_ARRAY)> _
Public SubAuthority(ANYSIZE_ARRAY) As UInt32
End Structure