Python: Apply typed IL2CPP API function signatures to disassembly

This commit is contained in:
Katy Coe
2020-08-16 22:43:35 +02:00
parent d892423829
commit ae44e2fce7

View File

@@ -102,6 +102,11 @@ def ProcessJSON(jsonData):
for d in jsonData['functionMetadata']:
DefineCppFunction(d)
# IL2CPP API functions
print('Processing IL2CPP API functions')
for d in jsonData['apis']:
DefineCppFunction(d)
# Entry point
print('Generated script file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty')
CustomInitializer()