GetOSType 获取系统类型(增强)
获取当前操作系统类型
整数型:系统类型

iType = Plugin.SysEx.GetOSType()    
If iType = 0 Then  
    MessageBox "未知的操作系统"   
ElseIf iType = 6 Then  
    MessageBox "您的操作系统版本是WinXP"    
ElseIf iType = 10 Then    
    MessageBox "您的操作系统版本是Win8"    
Else 
    MessageBox "其他操作系统:" & iType   
End If 

//0.未知 
//1.Win95 
//2.Win98 
//3.WinME 
//4.WinNT 
//5.Win2000 
//6.WinXP 
//7.Win2003 
//8.Vista 
//9.Win7 
//10.Win8