DayZ Scripts
v1.21.156300 ยท Jun 20, 2023
 
Loading...
Searching...
No Matches
BiosPackageService.c
Go to the documentation of this file.
1
4{
7
10};
11
13{
15
19
20
22
26
27
29
32 proto native EBiosError ShowStoreAsync();
33
35
39 void OnCheckUpdate(BiosCheckUpdateResult checkUpdateResult, EBiosError error)
40 {
41 if ( !error && ( checkUpdateResult.m_IsUpdate || checkUpdateResult.m_IsMandatory ) )
42 {
44 }
45 }
46
47
49
56 {
58 }
59
60
62
66 {
68 }
69
70};
EBiosError
Possible Error codes for bios API. This is the list of errors that can be returned from bios API....
BiosCheckUpdateResult represent result of the PromptUpdateAsync request.
bool m_IsMandatory
Is update mandatory?
bool m_IsUpdate
Is new update available?
void OnPromptUpdate(EBiosError error)
Callback function for PromptUpdateAsync()
proto native EBiosError PromptUpdateAsync()
Prompt user to accept update with system GUI.
proto native EBiosError ShowStoreAsync()
Show store for current title (system GUI). Only on Xbox.
void OnCheckUpdate(BiosCheckUpdateResult checkUpdateResult, EBiosError error)
Callback function for CheckUpdateAsync()
proto native EBiosError CheckUpdateAsync()
Async check if exist new update.
void OnShowStore(EBiosError error)
Callback function for ShowStoreAsync()
static void PromptUpdate()
static bool ErrorCaught(EBiosError error)