mirror of
https://github.com/DaKerboul/perun.git
synced 2026-08-09 17:05:39 +02:00
23 lines
1.7 KiB
C#
23 lines
1.7 KiB
C#
// This class gathers all global variable
|
|
|
|
internal class Globals
|
|
{
|
|
public static string strPerunVersion = "DEBUG"; // Helper for pulling version definition
|
|
public static string[] arrGUILogHistory = new string[10]; // Log history for GUI
|
|
public static bool bGUILogHistoryUpdate = true; // Flag if log control requires update
|
|
public static string strPerunTitleText = ""; // Helper to update title
|
|
public static int intInstanceId = 0; // Kepp the instance ID
|
|
public static bool bStatusIconsForce = true; // Force main window icons reload
|
|
public static bool bdcConnection = false; // Historic db connection status
|
|
public static bool bTCPServer = false; // Historic tcp connection status
|
|
public static bool bSRSStatus = false; // Historic srs connection status
|
|
public static bool bLotATCStatus = false; // Historic lotatc connection status
|
|
public static bool bClientConnected = false; // Flag if is TCP connectionstill alive
|
|
public static int intMysqlErros = 0; // MySQL - Error counter
|
|
public static int intGameErros = 0; // TCP connection - Error counter
|
|
public static int intGameErrosHistory = 0; // TCP connection - historic value of Error counter
|
|
public static int intSRSErros = 0; // DCS SRS - error counter
|
|
public static int intLotATCErros = 0; // LotATC - error counter
|
|
}
|
|
|