Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
System.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class System
13{
14 private void System();
15 private void ~System();
16
18 static proto void MemoryValidation(bool enable);
20 static proto int MemoryAllocationCount();
22 static proto int MemoryAllocationKB();
33 static proto bool GetCLIParam(string param, out string val);
45 static proto bool IsCLIParam(string paramName);
47 static proto string ImportFromClipboard();
49 static proto void ExportToClipboard(string text);
50 static proto string GetProfileName();
51 static proto string GetMachineName();
53 static proto int GetUnixTime();
72 static proto void GetHourMinuteSecond(out int hour, out int minute, out int second);
91 static proto void GetHourMinuteSecondUTC(out int hour, out int minute, out int second);
110 static proto void GetYearMonthDay(out int year, out int month, out int day);
129 static proto void GetYearMonthDayUTC(out int year, out int month, out int day);
130 static proto ProfileData GetProfileData();
134 static proto int GetTickCount(int prev = 0);
135 static proto string GetAdapterName();
136 static proto void GetNativeResolution(out int width, out int height);
137 static proto void GetRenderingResolution(out int width, out int height);
138 static proto void GetSupportedResolutions(out notnull array<int> widths, out notnull array<int> heights);
148 static proto bool MakeScreenshot(string path);
161 static proto void MakeScreenshotRawData(ScreenshotRawDataCallback scriptCallback, int posX, int posY, int srcWidth, int srcHeight, int dstWidth, int dstHeight);
174 static proto void MakeScreenshotTexture(ScreenshotTextureCallback scriptCallback, int posX, int posY, int srcWidth, int srcHeight, int dstWidth, int dstHeight);
178 static proto float GetFPS();
182 static proto float GetFrameTimeS();
186 static proto EPlatform GetPlatform();
191 static proto bool IsConsoleApp();
195 static proto float GetFinalImageContrast();
199 static proto float GetFinalImageBrightness();
203 static proto float GetFinalImageGamma();
210 static proto float SetFinalImageAttributes(float gamma, float brightness, float contrast);
224 static proto bool GetConstantValue(string constantName, out void value);
225}
226
string path
ProfileData is used to return profile data using System.GetProfileData().
Definition ProfileData.c:14
EPlatform
Definition EPlatform.c:13
func ScreenshotRawDataCallback
Definition System.c:45
func ScreenshotTextureCallback
Definition System.c:51