Skip to content

Instantly share code, notes, and snippets.

@igorjacauna
Last active August 29, 2015 14:19
Show Gist options
  • Save igorjacauna/3d2b209224404cb66b9a to your computer and use it in GitHub Desktop.
Save igorjacauna/3d2b209224404cb66b9a to your computer and use it in GitHub Desktop.
Get Windows version before SDK for Windows 8.1
bool GetWindowsVersion(DWORD& major, DWORD& minor)
{
LPBYTE pinfoRawData;
if (NERR_Success == NetWkstaGetInfo(NULL, 100, &pinfoRawData))
{
WKSTA_INFO_100 * pworkstationInfo = (WKSTA_INFO_100 *)pinfoRawData;
major = pworkstationInfo->wki100_ver_major;
minor = pworkstationInfo->wki100_ver_minor;
::NetApiBufferFree(pinfoRawData);
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment