ppsspp/Common/OSVersion.h
2017-02-25 09:57:14 +01:00

12 lines
276 B
C++

#pragma once
#include <string>
#ifdef _MSC_VER
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