mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
d1e354ce04
Don't implemente on vista and UWP,they don't have a full support for this.
14 lines
298 B
C++
14 lines
298 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifdef _WIN32
|
|
|
|
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();
|
|
|
|
#endif
|