GetVersionEx function kernel32

int GetVersionEx(
  1. Pointer<OSVERSIONINFO> lpVersionInformation
)

Gets information about the operating system version.

BOOL GetVersionExW(
  LPOSVERSIONINFOW lpVersionInformation
);

Implementation

int GetVersionEx(Pointer<OSVERSIONINFO> lpVersionInformation) =>
    _GetVersionEx(lpVersionInformation);