mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-01 09:12:37 -06:00
14 lines
183 B
C++
14 lines
183 B
C++
#pragma once
|
|
|
|
namespace os::version
|
|
{
|
|
struct OSVersion
|
|
{
|
|
uint32_t Major{};
|
|
uint32_t Minor{};
|
|
uint32_t Build{};
|
|
};
|
|
|
|
OSVersion GetOSVersion();
|
|
}
|