ppsspp/Common/OSVersion.h

14 lines
298 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 DoesVersionMatchWindows(uint32_t major, uint32_t minor, uint32_t spMajor, uint32_t spMinor, bool acceptGreater);
std::string GetWindowsVersion();
std::string GetWindowsSystemArchitecture();
2018-03-23 02:18:13 +00:00
#endif