aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/os.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os.hpp')
-rw-r--r--src/os.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/os.hpp b/src/os.hpp
new file mode 100644
index 0000000..1a3c52d
--- /dev/null
+++ b/src/os.hpp
@@ -0,0 +1,30 @@
+#pragma once
+
+#include "error.hpp"
+
+#include <Windows.h>
+
+namespace os
+{
+ OSVERSIONINFOW get_version_info()
+ {
+ OSVERSIONINFOW info;
+ ZeroMemory(&info, sizeof(info));
+ info.dwOSVersionInfoSize = sizeof(info);
+
+ if (!GetVersionExW(&info))
+ error::raise("GetVersionExW");
+
+ return info;
+ }
+
+ bool is_vista_or_later(const OSVERSIONINFOW& info)
+ {
+ return info.dwMajorVersion >= 6;
+ }
+
+ bool is_vista_or_later()
+ {
+ return is_vista_or_later(get_version_info());
+ }
+}