ppsspp/Common/OSVersion.h

17 lines
418 B
C
Raw Normal View History

#pragma once
#include <string>
2018-03-23 02:18:13 +00:00
#ifdef _WIN32
2017-02-24 19:50:27 +00:00
bool IsVistaOrHigher();
bool IsWin7OrHigher();
bool IsWin8OrHigher();
bool DoesVersionMatchWindows(uint32_t major, uint32_t minor, uint32_t spMajor, uint32_t spMinor, uint32_t build, bool acceptGreater);
2024-09-03 16:07:57 +00:00
bool GetVersionFromKernel32(uint32_t& major, uint32_t& minor, uint32_t& build);
2024-09-03 11:58:35 +00:00
std::string GetWindowsVersion();
std::string GetWindowsSystemArchitecture();
2018-03-23 02:18:13 +00:00
#endif