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.
CRYPT_OBJID_BLOB (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
public struct CRYPT_OBJID_BLOB
struct CRYPT_OBJID_BLOB
{
public uint cbData;
[MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)]
public byte[] pbData;
}
VB Definition:
Structure CRYPT_OBJID_BLOB
Public TODO
End Structure
User-Defined Field Types:
None.
Notes:
None.
The above mentioned struct doesn't work, one should use
[StructLayoutAttribute(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct CRYPT_XYZ_BLOB
{
public Int32 cbData;
public IntPtr pbData;
}