Changes between Version 1 and Version 2 of Ticket #3849, comment 2


Ignore:
Timestamp:
10/05/21 19:28:28 (3 years ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3849, comment 2

    v1 v2  
    2424        If @error Or Not $aCall[0] Then Return SetError(@error, @extended, 0)
    2525
    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"))
    2929
    3030        Return Number(DllStructGetData($tOSVI, "MajorVersion") & "." & DllStructGetData($tOSVI, "MinorVersion"), $NUMBER_DOUBLE)
    3131EndFunc   ;==>_WinAPI_GetVersion
    32 
    3332}}}