aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/Util.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-12-01 19:53:13 +0100
committerShauren <shauren.trinity@gmail.com>2023-12-02 15:57:09 +0100
commiteb50b29ab3d95c713bdc5cb508ec06a69704921d (patch)
tree48d50f659a2015e01af0d4c6556c43e8f6ba5544 /src/common/Utilities/Util.h
parente2b26f2038e40760a0f46ae587af9ec985d041eb (diff)
Core/Misc: Added windows version checks during startup to avoid confusion about crashes when running on unsupported OS
(cherry picked from commit 333630b7de15c4090392fcbbc1bc58da4d5fb138)
Diffstat (limited to 'src/common/Utilities/Util.h')
-rw-r--r--src/common/Utilities/Util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/Utilities/Util.h b/src/common/Utilities/Util.h
index 14d633e2ae8..6ddbedd2054 100644
--- a/src/common/Utilities/Util.h
+++ b/src/common/Utilities/Util.h
@@ -39,6 +39,8 @@ enum class TimeFormat : uint8
namespace Trinity
{
+ TC_COMMON_API void VerifyOsVersion();
+
TC_COMMON_API std::vector<std::string_view> Tokenize(std::string_view str, char sep, bool keepEmpty);
/* this would return string_view into temporary otherwise */