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_IDENTIFIER_AUTHORITY (Structures)
.
C# Definition:
struct SID_IDENTIFIER_AUTHORITY
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst=6)]
public byte[] Value;
struct SID_IDENTIFIER_AUTHORITY
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst=6)]
public byte[] Value;
public SID_IDENTIFIER_AUTHORITY(byte[] value)
{
Value = value;
}
}
public SID_IDENTIFIER_AUTHORITY(byte[] value)
{
Value = value;
}
}
VB Definition:
Structure SID_IDENTIFIER_AUTHORITY
Structure SID_IDENTIFIER_AUTHORITY
Dim Value1 As Byte
Dim Value2 As Byte
Dim Value3 As Byte
Dim Value4 As Byte
Dim Value5 As Byte
Dim Value6 As Byte
End Structure
End Structure