Changes between Version 1 and Version 2 of Ticket #3849, comment 2
- Timestamp:
- 10/05/21 19:28:28 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3849, comment 2
v1 v2 24 24 If @error Or Not $aCall[0] Then Return SetError(@error, @extended, 0) 25 25 26 MsgBox(0, "OSVERSIONINFO", "MajorVersion = " & DllStructGetData($tOSVI, "MajorVersion") & @CRLF & _27 "MinorVersion = " & DllStructGetData($tOSVI, "MinorVersion") & @CRLF & _28 "BuildNumber = " & DllStructGetData($tOSVI, "BuildNumber"))26 MsgBox(0, "OSVERSIONINFO", "MajorVersion = " & DllStructGetData($tOSVI, "MajorVersion") & @CRLF & _ 27 "MinorVersion = " & DllStructGetData($tOSVI, "MinorVersion") & @CRLF & _ 28 "BuildNumber = " & DllStructGetData($tOSVI, "BuildNumber")) 29 29 30 30 Return Number(DllStructGetData($tOSVI, "MajorVersion") & "." & DllStructGetData($tOSVI, "MinorVersion"), $NUMBER_DOUBLE) 31 31 EndFunc ;==>_WinAPI_GetVersion 32 33 32 }}}