@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Definition: [StructLayout(LayoutKind.Sequential)] public struct CRYPT_ALGORITHM_IDENTIFIER { [MarshalAs(UnmanagedType.LPStr)] public String pszObjId; public CRYPT_OBJID_BLOB Parameters; } alternative (without using CRYPT_OBJID_BLOB): [StructLayout(LayoutKind.Sequential)] public struct CRYPT_ALGORITHM_IDENTIFIER { [MarshalAs(UnmanagedType.LPStr)] public string pszObjId; public int cbData; public IntPtr pbData; } !!!!VB Definition: Structure CRYPT_ALGORITHM_IDENTIFIER Public TODO End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: CRYPT_ALGORITHM_IDENTIFIER@msdn on MSDN
Edit Structures.CRYPT_...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.