mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
Complete Ghidra symbol import script
This commit is contained in:
parent
92179ea9bd
commit
fd6815ae42
3 changed files with 1342 additions and 1263 deletions
|
|
@ -70,14 +70,14 @@ public class EnhancedExport extends GhidraScript{
|
|||
(f.isInline() ? "inline" : "notinline") + "\t" +
|
||||
Optional.ofNullable(f.getCallFixup())
|
||||
.orElse("nofixup") + "\t" +
|
||||
f.getName(true) +
|
||||
f.getName(true) + "\t" +
|
||||
String.join(
|
||||
"\t",
|
||||
Arrays.stream(f.getSignature(true)
|
||||
.getArguments())
|
||||
.map(arg ->
|
||||
"\t" + arg.getDataType().getDisplayName() +
|
||||
"\t" + arg.getName()
|
||||
arg.getDataType().getDisplayName() + "\t" +
|
||||
arg.getName()
|
||||
).toArray(String[]::new)
|
||||
) +
|
||||
(f.hasVarArgs() ? "\t..." : "") + "\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue