MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / values_for_entry

Method values_for_entry

windows/winobject/apisetmap.py:168–175  ·  view source on GitHub ↗
(self, entry)

Source from the content-addressed store, hash-verified

166 return (gdef.API_SET_NAMESPACE_ENTRY_V6 * array_size).from_address(self.base + array_offset)
167
168 def values_for_entry(self, entry):
169 values_array = (gdef.API_SET_VALUE_ENTRY * entry.ValueCount).from_address(self.base + entry.ValueOffset)
170 res = []
171 for value in values_array:
172 if value.ValueLength:
173 v = self.read_apiset_wstring(value.ValueOffset, value.ValueLength)
174 res.append(v)
175 return res
176
177API_SET_MAP_BY_VERSION = {
178 2: ApiSetMapVersion2,

Callers

nothing calls this directly

Calls 1

read_apiset_wstringMethod · 0.80

Tested by

no test coverage detected