Source code of Windows XP (NT5)
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.

45 lines
640 B

  1. // Security.MOF
  2. // Revised Security Schema MOF
  3. [abstract]
  4. class __Subject : __SecurityRelatedClass
  5. {
  6. [key] string Name;
  7. boolean Enabled = FALSE;
  8. [values("Read", "InstanceWrite", "ClassWrite")]
  9. sint32 Permissions = 0; //0,1,2 = one of the above enums
  10. boolean ExecuteMethods = FALSE;
  11. boolean EditSecurity = FALSE;
  12. };
  13. [abstract]
  14. class __User : __Subject
  15. {
  16. };
  17. class __NTLMUser : __User
  18. {
  19. string Domain;
  20. sint32 Flags; // Reserved
  21. };
  22. [abstract]
  23. class __Group : __Subject
  24. {
  25. };
  26. class __NTLMGroup : __Group
  27. {
  28. [values("Local", "Global")]
  29. sint32 GroupType; //0=Local, 1=Global
  30. string Domain;
  31. };