http://www.purebasic.com/documentation/ ... rsion.html


you can get it easily with an Or like thisPB wrote:Also, do you think you could add a new one that combines these into one:
#PB_OS_Windows_NT3_51
#PB_OS_Windows_NT_4
Thus, #PB_OS_Windows_NT or similar? It would save checking both values
to test for Windows NT, and you can leave both for times when you want
to check for NT4 alone, etc.
Code: Select all
Select OSVersion()
  Case #PB_OS_Windows_NT3_51 Or #PB_OS_Windows_NT_4
    
EndSelect 
  )
 )