Holds the user name, password, and domain to connect to a secure server.
typedef struct {
DWORD dwSize;
DWORD dwFlags;
union {
LPWSTR lpszUsername;
LPSTR lpszUsernameA;
};
union {
LPWSTR lpszPassword;
LPSTR lpszPasswordA;
};
union {
LPWSTR lpszDomain;
LPSTR lpszDomainA;
};
} DPCREDENTIALS, FAR *LPDPCREDENTIALS;
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.