include: Fix a typo in wincred.h.

The Attribute field of the CREDENTIALA/W structs should instead be 
Attributes.
oldstable
Rob Shearman 2007-05-30 09:00:26 +01:00 committed by Alexandre Julliard
parent bacf5c640f
commit eb239a47cc
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ typedef struct _CREDENTIALA
LPBYTE CredentialBlob;
DWORD Persist;
DWORD AttributeCount;
PCREDENTIAL_ATTRIBUTEA Attribute;
PCREDENTIAL_ATTRIBUTEA Attributes;
LPSTR TargetAlias;
LPSTR UserName;
} CREDENTIALA, *PCREDENTIALA;
@ -81,7 +81,7 @@ typedef struct _CREDENTIALW
LPBYTE CredentialBlob;
DWORD Persist;
DWORD AttributeCount;
PCREDENTIAL_ATTRIBUTEW Attribute;
PCREDENTIAL_ATTRIBUTEW Attributes;
LPWSTR TargetAlias;
LPWSTR UserName;
} CREDENTIALW, *PCREDENTIALW;