You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
340 B

  1. #if NETFX
  2. using System;
  3. namespace IWshRuntimeLibrary
  4. {
  5. // Token: 0x02000011 RID: 17
  6. internal enum Tristate
  7. {
  8. // Token: 0x04000012 RID: 18
  9. TristateTrue = -1,
  10. // Token: 0x04000013 RID: 19
  11. TristateFalse,
  12. // Token: 0x04000014 RID: 20
  13. TristateUseDefault = -2,
  14. // Token: 0x04000015 RID: 21
  15. TristateMixed = -2
  16. }
  17. }
  18. #endif