DPACCOUNTDESC

Describes the account information for a specific player.

Syntax

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

IDirectPlay4::GetPlayerAccount


Top of Page Top of Page
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.