Files
ZuneShell.dll/libs/Meziantou.Framework.Win32.CredentialManager/Natives/Credential.cs
T

22 lines
678 B
C#

using System;
using System.Runtime.InteropServices;
namespace Meziantou.Framework.Win32.Natives
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
internal struct CREDENTIAL
{
public uint Flags;
public CredentialType Type;
public IntPtr TargetName;
public IntPtr Comment;
public System.Runtime.InteropServices.ComTypes.FILETIME LastWritten;
public uint CredentialBlobSize;
public IntPtr CredentialBlob;
public CredentialPersistence Persist;
public uint AttributeCount;
public IntPtr Attributes;
public IntPtr TargetAlias;
public IntPtr UserName;
}
}