|
|
@ -11,6 +11,7 @@
|
|
|
|
{"UnbanAddress", ServerFunctions::UnbanAddress},\
|
|
|
|
{"UnbanAddress", ServerFunctions::UnbanAddress},\
|
|
|
|
\
|
|
|
|
\
|
|
|
|
{"GetOperatingSystemType", ServerFunctions::GetOperatingSystemType},\
|
|
|
|
{"GetOperatingSystemType", ServerFunctions::GetOperatingSystemType},\
|
|
|
|
|
|
|
|
{"GetArchitectureType", ServerFunctions::GetArchitectureType},\
|
|
|
|
{"GetServerVersion", ServerFunctions::GetServerVersion},\
|
|
|
|
{"GetServerVersion", ServerFunctions::GetServerVersion},\
|
|
|
|
{"GetProtocolVersion", ServerFunctions::GetProtocolVersion},\
|
|
|
|
{"GetProtocolVersion", ServerFunctions::GetProtocolVersion},\
|
|
|
|
{"GetAvgPing", ServerFunctions::GetAvgPing},\
|
|
|
|
{"GetAvgPing", ServerFunctions::GetAvgPing},\
|
|
|
@ -75,6 +76,15 @@ public:
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
static const char *GetOperatingSystemType() noexcept;
|
|
|
|
static const char *GetOperatingSystemType() noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* \brief Get the architecture type used by the server.
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* Note: Currently, the type can be "64-bit", "32-bit", "ARMv#" or "Unknown architecture".
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* \return The architecture type.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const char *GetArchitectureType() noexcept;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* \brief Get the TES3MP version of the server.
|
|
|
|
* \brief Get the TES3MP version of the server.
|
|
|
|
*
|
|
|
|
*
|
|
|
|