Files
NSspi/SecureBuffer/SecureBufferDesc.cs
2014-06-26 18:04:44 +00:00

23 lines
525 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace NSspi.Buffers
{
[StructLayout( LayoutKind.Sequential)]
internal struct SecureBufferDescInternal
{
public int Version;
public int NumBuffers;
// A pointer to a SecureBuffer[]
public IntPtr Buffers;
public const int ApiVersion = 0;
}
}