OSType.cs 413 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SmartCoalApplication.SystemLayer
  7. {
  8. public enum OSType
  9. {
  10. Unknown = 0,
  11. Workstation = (int)NativeConstants.VER_NT_WORKSTATION,
  12. DomainController = (int)NativeConstants.VER_NT_DOMAIN_CONTROLLER,
  13. Server = (int)NativeConstants.VER_NT_SERVER,
  14. }
  15. }