(self, entry)
| 36 | raise NotImplementedError("Should be implemented by subclasses") |
| 37 | |
| 38 | def get_entry_name_basicimpl(self, entry): |
| 39 | return self.read_apiset_wstring(entry.NameOffset, entry.NameLength) |
| 40 | |
| 41 | def values_for_entry(self, entry): |
| 42 | raise NotImplementedError("Should be implemented by subclasses") |
nothing calls this directly
no test coverage detected