mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-21 15:32:18 +00:00
13 lines
183 B
C++
13 lines
183 B
C++
#pragma once
|
|
|
|
namespace os::version
|
|
{
|
|
struct OSVersion
|
|
{
|
|
uint32_t Major{};
|
|
uint32_t Minor{};
|
|
uint32_t Build{};
|
|
};
|
|
|
|
OSVersion GetOSVersion();
|
|
}
|