(self)
| 105 | |
| 106 | @property |
| 107 | def name(self): |
| 108 | if self.target is None: |
| 109 | name = get_string(self.target, ctypes.addressof(self.Name))[:8] |
| 110 | else: |
| 111 | name = get_string(self.target, self._base_addr)[:8] |
| 112 | # Decode as UTF-8 as the MS doc say ? |
| 113 | return name |
| 114 | |
| 115 | @property |
| 116 | def start(self): |
nothing calls this directly
no test coverage detected