Describes the account information for a specific player.
typedef struct {
DWORD dwSize;
DWORD dwFlags;
union {
LPWSTR lpszAccountID;
LPSTR lpszAccountIDA;
};
} DPACCOUNTDESC, FAR *LPDPACCOUNTDESC;
Members
- dwSize
- The size of the DPACCOUNTDESC structure, dwsize = sizeof(DPACCOUNTDESC).
- dwFlags
- Not used. Must be zero.
- lpszAccountID
- Pointer to a Unicode string containing the account identifier. This is a unique identifier that describes a player who is securely logged in. The format of the identifier depends on the Security Support Provider Interface (SSPI) package being used.
- lpszAccountIDA
- Pointer to an ANSI string containing the account identifier. This is a unique identifier that describes a player who is securely logged in. The format of the identifier depends on the SSPI package being used.
See Also
IDirectPlay3::GetPlayerAccount
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.