DayZ 1.24
Loading...
Searching...
No Matches
BiosSocialService.c
Go to the documentation of this file.
1
3
5{
6 string m_Uid;
7 string m_DisplayName;
10
12 {
13 return (a.m_Uid == b.m_Uid && a.m_DisplayName == b.m_DisplayName && a.m_IsFavorite == b.m_IsFavorite && a.m_IsFollowed == b.m_IsFollowed);
14 }
15};
16
18
20
EBiosError
Possible Error codes for bios API. This is the list of errors that can be returned from bios API....
array< ref BiosFriendInfo > BiosFriendInfoArray
BiosFriendInfo represents friend information.
string m_DisplayName
The Displayable nick name of the friend.
bool m_IsFavorite
Xbox: Is a favorite friend?
string m_Uid
The Uid of the friend.
bool m_IsFollowed
Xbox: Is this a two-way friendship?
static bool Compare(BiosFriendInfo a, BiosFriendInfo b)
BiosSocialService is used to query friend list and other social features for the current user.
proto native EBiosError GetFriendsAsync()
Query for friends list.
void OnFriendsAsync(BiosFriendInfoArray friend_list, EBiosError error)
Async callback for GetFriendsAsync.
void OnUserProfileAsync(EBiosError error)
Async callback for ShowUserProfileAsync.
proto native EBiosError ShowUserProfileAsync(string uid_target)
Display small system UI profile for the target.
static void OnUserProfileAsync(EBiosError error)
static void OnFriendsAsync(BiosFriendInfoArray friend_list, EBiosError error)