CTL_CONTEXT (crypt32)
Last changed: anonymous

.
Summary
TODO - a short description

C# Signature:

    [StructLayout(LayoutKind.Sequential)]
    public struct CTL_CONTEXT
    {
        public uint dwMsgAndCertEncodingType;
        public IntPtr pbCtlEncoded;
        public uint cbCtlEncoded;
        public IntPtr pCtlInfo;
        public IntPtr hCertStore;
        public IntPtr hCryptMsg;
        public IntPtr pbCtlContent;
        public uint cbCtlContent;
    }

VB Signature:

User-Defined Types:

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

    CTL_CONTEXT ctlContext = (CTL_CONTEXT)Marshal.PtrToStructure(
        ctlContextPtr, typeof(CTL_CONTEXT));

Documentation
CTL_CONTEXT on MSDN