Describes the account information for a specific player.
typedef struct {
DWORD dwSize;
DWORD dwFlags;
union {
LPWSTR lpszAccountID;
LPSTR lpszAccountIDA;
};
} DPACCOUNTDESC, FAR *LPDPACCOUNTDESC;
Members
The size of the DPACCOUNTDESC structure, dwsize = sizeof(DPACCOUNTDESC).
Not used. Must be zero.
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.
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