AbstractOperatingSystem.st
changeset 24131 e3c41bf36fa1
parent 24108 7a3a01285e59
child 24165 9f0cfb788f48
equal deleted inserted replaced
24130:5f68a36cc2d3 24131:e3c41bf36fa1
  5024 
  5024 
  5025 isVMSlike
  5025 isVMSlike
  5026     "return true, if the OS we're running in is VMS (or openVMS)."
  5026     "return true, if the OS we're running in is VMS (or openVMS)."
  5027 
  5027 
  5028     ^ false
  5028     ^ false
       
  5029 !
       
  5030 
       
  5031 isVistaLike
       
  5032     "return true, if running on a Vista (or newer) like system.
       
  5033      (also true for server 2008)"
       
  5034 
       
  5035     ^ false
       
  5036 
       
  5037     "Created: / 22-05-2019 / 12:54:03 / Claus Gittinger"
       
  5038 !
       
  5039 
       
  5040 isWin10Like
       
  5041     "return true, if running on a Windows10 (or newer) like system.
       
  5042      (also true for server 2016)"
       
  5043 
       
  5044     ^ false
       
  5045 
       
  5046     "Created: / 22-05-2019 / 12:53:54 / Claus Gittinger"
       
  5047 !
       
  5048 
       
  5049 isWin7Like
       
  5050     "return true, if running on a Windows7 (or newer) like system."
       
  5051 
       
  5052     ^ false
       
  5053 
       
  5054     "Created: / 22-05-2019 / 12:53:42 / Claus Gittinger"
       
  5055 !
       
  5056 
       
  5057 isWin8Like
       
  5058     "return true, if running on a Windows8 (or newer) like system.
       
  5059      (also true for server 2012)"
       
  5060 
       
  5061     ^ false
       
  5062 
       
  5063     "Created: / 22-05-2019 / 12:53:13 / Claus Gittinger"
  5029 !
  5064 !
  5030 
  5065 
  5031 knownPlatformNames
  5066 knownPlatformNames
  5032     "return a collection of strings as possibly returned by getPlatformName.
  5067     "return a collection of strings as possibly returned by getPlatformName.
  5033      Should be used instead of getOSType or getSystemType if multiple choice
  5068      Should be used instead of getOSType or getSystemType if multiple choice