Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
WorkbenchDialogs.c
Go to the documentation of this file.
2{
4 int m_iResult;
5
6 [ButtonAttribute("Abort")]
7 protected int ButtonAbort()
8 {
9 m_iResult = 0;
10 return m_iResult;
11 }
12
13 [ButtonAttribute("Retry", true)]
14 protected int ButtonRetry()
15 {
16 m_iResult = 1;
17 return m_iResult;
18 }
19
20 [ButtonAttribute("Ignore")]
21 protected int ButtonIgnore()
22 {
23 m_iResult = 2;
24 return m_iResult;
25 }
26}
27
28class WorkbenchDialog_OKCancel
29{
30 [ButtonAttribute("OK", true)]
31 protected int ButtonOK()
32 {
33 return 1;
34 }
36 [ButtonAttribute("Cancel")]
37 protected int ButtonCancel()
38 {
39 return 0;
40 }
41}
bool ButtonCancel()
bool ButtonOK()
class WorkbenchDialog_AbortRetryIgnore ButtonAttribute("OK", true)