Add OSVersion utility
This commit is contained in:
parent
3b73576ab9
commit
4d52166b8c
27
misc/OSVersion.cc
Normal file
27
misc/OSVersion.cc
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#include <windows.h>
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <locale.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
setlocale(LC_ALL, "");
|
||||||
|
|
||||||
|
OSVERSIONINFOEXW info = {0};
|
||||||
|
info.dwOSVersionInfoSize = sizeof(info);
|
||||||
|
assert(GetVersionExW((OSVERSIONINFOW*)&info));
|
||||||
|
|
||||||
|
printf("dwMajorVersion = %d\n", (int)info.dwMajorVersion);
|
||||||
|
printf("dwMinorVersion = %d\n", (int)info.dwMinorVersion);
|
||||||
|
printf("dwBuildNumber = %d\n", (int)info.dwBuildNumber);
|
||||||
|
printf("dwPlatformId = %d\n", (int)info.dwPlatformId);
|
||||||
|
printf("szCSDVersion = %ls\n", info.szCSDVersion);
|
||||||
|
printf("wServicePackMajor = %d\n", info.wServicePackMajor);
|
||||||
|
printf("wServicePackMinor = %d\n", info.wServicePackMinor);
|
||||||
|
printf("wSuiteMask = 0x%x\n", (unsigned int)info.wSuiteMask);
|
||||||
|
printf("wProductType = 0x%x\n", (unsigned int)info.wProductType);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user