Compartir a través de


XblSocialManagerUser

Xbox Social User that contains profile, presence, preferred color, and title history data.

Syntax

typedef struct XblSocialManagerUser {  
    uint64_t xboxUserId;  
    bool isFavorite;  
    bool isFollowingUser;  
    bool isFollowedByCaller;  
    char displayName[XBL_DISPLAY_NAME_CHAR_SIZE];  
    char realName[XBL_REAL_NAME_CHAR_SIZE];  
    char displayPicUrlRaw[XBL_DISPLAY_PIC_URL_RAW_CHAR_SIZE];  
    bool useAvatar;  
    char gamerscore[XBL_GAMERSCORE_CHAR_SIZE];  
    char gamertag[XBL_GAMERTAG_CHAR_SIZE];  
    char modernGamertag[XBL_MODERN_GAMERTAG_CHAR_SIZE];  
    char modernGamertagSuffix[XBL_MODERN_GAMERTAG_SUFFIX_CHAR_SIZE];  
    char uniqueModernGamertag[XBL_UNIQUE_MODERN_GAMERTAG_CHAR_SIZE];  
    XblSocialManagerPresenceRecord presenceRecord;  
    XblTitleHistory titleHistory;  
    XblPreferredColor preferredColor;  
} XblSocialManagerUser  

Members

xboxUserId
Type: uint64_t

The xbox user id.

isFavorite
Type: bool

Whether they are a favorite.

isFollowingUser
Type: bool

Whether the calling user is following them.

isFollowedByCaller
Type: bool

Whether they calling user is followed by this person.

displayName
Type: char[XBL_DISPLAY_NAME_CHAR_SIZE]

The UTF-8 encoded display name.

realName
Type: char[XBL_REAL_NAME_CHAR_SIZE]

The UTF-8 encoded real name.

displayPicUrlRaw
Type: char[XBL_DISPLAY_PIC_URL_RAW_CHAR_SIZE]

The UTF-8 encoded display picture uri.

useAvatar
Type: bool

Whether to use the players avatar.

gamerscore
Type: char[XBL_GAMERSCORE_CHAR_SIZE]

UTF-8 encoded player's gamerscore.

gamertag
Type: char[XBL_GAMERTAG_CHAR_SIZE]

UTF-8 encoded player's gamertag.

modernGamertag
Type: char[XBL_MODERN_GAMERTAG_CHAR_SIZE]

Modern gamertag for the player. Not guaranteed to be unique.

modernGamertagSuffix
Type: char[XBL_MODERN_GAMERTAG_SUFFIX_CHAR_SIZE]

Suffix appended to modern gamertag to ensure uniqueness. May be empty in some cases.

uniqueModernGamertag
Type: char[XBL_UNIQUE_MODERN_GAMERTAG_CHAR_SIZE]

Combined modern gamertag and suffix. Format will be "MGT#suffix". Guaranteed to be no more than 16 rendered characters.

presenceRecord
Type: XblSocialManagerPresenceRecord

Users presence record.

titleHistory
Type: XblTitleHistory

Title history for the user.

preferredColor
Type: XblPreferredColor

Preferred color for the user.

Member of

XblSocialManagerEvent

Requirements

Header: social_manager_c.h

See also

social_manager_c