refactor: IAT stuff to ExeHost

This commit is contained in:
Dobin
2024-02-25 09:20:47 +00:00
parent d61f358ae4
commit 4b1e6811f8
9 changed files with 60 additions and 55 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ def fixup_asm_file(filename: FilePath, payload_len: int, short_call_patching: bo
return True
def get_function_stubs(asm_in: FilePath):
def get_function_stubs(asm_in: FilePath) -> List[str]:
functions = []
with open(asm_in, 'r', encoding='utf-8') as asmfile: