12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.SystemLayer
- {
- public enum OSType
- {
- Unknown = 0,
- Workstation = (int)NativeConstants.VER_NT_WORKSTATION,
- DomainController = (int)NativeConstants.VER_NT_DOMAIN_CONTROLLER,
- Server = (int)NativeConstants.VER_NT_SERVER,
- }
- }
|