Group: System Information - Library: kernel32
The GetVersionEx function obtains extended information about the version of the operating system that is currently running
Extended OS Version info
How to Start a Process as Another User (NT/XP/2K)
BOOL GetVersionEx(
LPOSVERSIONINFO lpVersionInformation
// points to version information structure
); DECLARE INTEGER GetVersionEx IN kernel32;
STRING @ lpVersionInformation
lpVersionInformation Points to an OSVERSIONINFO data structure that the function fills with operating system version information
If the function succeeds, the return value is TRUE
See also: GetVersion, GetProductInfo.
Home