| 39 | } |
| 40 | |
| 41 | DWORD GetWindowsBuildNumber() { |
| 42 | WindowsVersion version = {}; |
| 43 | return GetWindowsVersion(version) ? version.build : 0; |
| 44 | } |
| 45 | |
| 46 | bool IsWindowsVersionAtLeast(DWORD major, DWORD minor, DWORD build) { |
| 47 | WindowsVersion current = {}; |
nothing calls this directly
no test coverage detected