MCPcopy Create free account
hub / github.com/dobin/SuperMega / __init__

Method __init__

model/injectable.py:13–16  ·  view source on GitHub ↗
(self, name: str, placeholder: bytes)

Source from the content-addressed store, hash-verified

11
12class IatRequest():
13 def __init__(self, name: str, placeholder: bytes):
14 self.name: str = name # Function Name, like "VirtualAlloc"
15 self.references: List[bytes] = []
16 self.add_reference(placeholder)
17
18 def add_reference(self, placeholder):
19 self.references.append(placeholder)

Callers

nothing calls this directly

Calls 1

add_referenceMethod · 0.95

Tested by

no test coverage detected