(self)
| 510 | |
| 511 | @property |
| 512 | def attribute(self): |
| 513 | # Sid-size not in the initial struct |
| 514 | sid_size_over = self.sid.size - type(self).SidStart.size |
| 515 | sec_attr_addr = ctypes.addressof(self) + ctypes.sizeof(self) + sid_size_over |
| 516 | return ClaimSecurityAttributeRelativeV1.from_address(sec_attr_addr) |
| 517 | |
| 518 | class SystemScopedPolicyIDACE(MaskAndSidACE, gdef.SYSTEM_SCOPED_POLICY_ID_ACE): |
| 519 | ACE_TYPE = gdef.SYSTEM_SCOPED_POLICY_ID_ACE_TYPE |