mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
13 lines
275 B
C++
13 lines
275 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#ifdef _WIN32
|
|
|
|
bool IsVistaOrHigher();
|
|
bool DoesVersionMatchWindows(uint32_t major, uint32_t minor, uint32_t spMajor, uint32_t spMinor, bool acceptGreater);
|
|
std::string GetWindowsVersion();
|
|
std::string GetWindowsSystemArchitecture();
|
|
|
|
#endif
|