Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.15 KB

File metadata and controls

50 lines (33 loc) · 1.15 KB

Home

Function name : GetVersionEx

Group: System Information - Library: kernel32


The GetVersionEx function obtains extended information about the version of the operating system that is currently running


Code examples:

Extended OS Version info
How to Start a Process as Another User (NT/XP/2K)

Declaration:

BOOL GetVersionEx(
    LPOSVERSIONINFO  lpVersionInformation 	
	// points to version information structure
   );  

FoxPro declaration:

DECLARE INTEGER GetVersionEx IN kernel32;
	STRING @ lpVersionInformation
  

Parameters:

lpVersionInformation Points to an OSVERSIONINFO data structure that the function fills with operating system version information


Return value:

If the function succeeds, the return value is TRUE


Comments:

See also: GetVersion, GetProductInfo.