Dayz Explorer
1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
biossocialservice.c
Go to the documentation of this file.
1
3
4
class
BiosFriendInfo
5
{
6
string
m_Uid;
7
string
m_DisplayName;
8
bool
m_IsFavorite;
9
bool
m_IsFollowed;
10
11
static
bool
Compare(
BiosFriendInfo
a,
BiosFriendInfo
b )
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
17
typedef
array<ref BiosFriendInfo>
BiosFriendInfoArray
;
18
20
23
class
BiosSocialService
24
{
26
32
proto native
EBiosError
ShowUserProfileAsync(
string
uid_target);
33
35
40
proto native
EBiosError
GetFriendsAsync();
41
43
48
void
OnUserProfileAsync(
EBiosError
error)
49
{
50
OnlineServices
.OnUserProfileAsync( error );
51
}
52
54
58
void
OnFriendsAsync(
BiosFriendInfoArray
friend_list,
EBiosError
error)
59
{
60
OnlineServices
.OnFriendsAsync( friend_list, error );
61
}
62
};
BiosFriendInfo
BiosFriendInfo represents friend information.
Definition:
biossocialservice.c:4
BiosSocialService
BiosSocialService is used to query friend list and other social features for the current user.
Definition:
biossocialservice.c:23
BiosFriendInfoArray
array< ref BiosFriendInfo > BiosFriendInfoArray
Definition:
biossocialservice.c:17
EBiosError
EBiosError
Possible Error codes for bios API. This is the list of errors that can be returned from bios API....
Definition:
bioserrormodule.c:6
array
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
Definition:
isboxcollidinggeometryproxyclasses.c:27
OnlineServices
Definition:
onlineservices.c:1
DAYZ
scripts_v1.24.157551
scripts
game
services
biossocialservice.c
Generated by
1.8.17