namespace com.hitrust.b2b.Security
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct ChainPolicyStatus
|
|
{
|
|
public int cbSize;
|
|
public int dwError;
|
|
public int lChainIndex;
|
|
public int lElementIndex;
|
|
public IntPtr pvExtraPolicyStatus;
|
|
}
|
|
}
|
|
|