Commit eb239a47 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Fix a typo in wincred.h.

The Attribute field of the CREDENTIALA/W structs should instead be Attributes.
parent bacf5c64
...@@ -65,7 +65,7 @@ typedef struct _CREDENTIALA ...@@ -65,7 +65,7 @@ typedef struct _CREDENTIALA
LPBYTE CredentialBlob; LPBYTE CredentialBlob;
DWORD Persist; DWORD Persist;
DWORD AttributeCount; DWORD AttributeCount;
PCREDENTIAL_ATTRIBUTEA Attribute; PCREDENTIAL_ATTRIBUTEA Attributes;
LPSTR TargetAlias; LPSTR TargetAlias;
LPSTR UserName; LPSTR UserName;
} CREDENTIALA, *PCREDENTIALA; } CREDENTIALA, *PCREDENTIALA;
...@@ -81,7 +81,7 @@ typedef struct _CREDENTIALW ...@@ -81,7 +81,7 @@ typedef struct _CREDENTIALW
LPBYTE CredentialBlob; LPBYTE CredentialBlob;
DWORD Persist; DWORD Persist;
DWORD AttributeCount; DWORD AttributeCount;
PCREDENTIAL_ATTRIBUTEW Attribute; PCREDENTIAL_ATTRIBUTEW Attributes;
LPWSTR TargetAlias; LPWSTR TargetAlias;
LPWSTR UserName; LPWSTR UserName;
} CREDENTIALW, *PCREDENTIALW; } CREDENTIALW, *PCREDENTIALW;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment