aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/os.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/os.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/os.cpp b/src/os.cpp
deleted file mode 100644
index 13fd766..0000000
--- a/src/os.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
-// This file is part of the "Privilege check" project.
-// For details, see https://github.com/egor-tensin/privilege-check.
-// Distributed under the MIT License.
-
-#include "error.hpp"
-#include "os.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;
- }
-}