16 lines
394 B
C#
16 lines
394 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Lithnet.CredentialProvider.Interop
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct KerberosInteractiveUnlockLogon
|
|
{
|
|
public KerbLogonSubmitType SubmitType;
|
|
public LsaStringUni LogonDomainName;
|
|
public LsaStringUni Username;
|
|
public LsaStringUni Password;
|
|
|
|
public long LoginId;
|
|
}
|
|
}
|