mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
22 lines
678 B
C#
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;
|
|
}
|
|
} |