GP-5764 added option to RecoverClassesFromRTTIScript enabling users to not force vfunctions to be thiscalls.

This commit is contained in:
ghidra007 2025-07-25 22:15:27 +00:00
parent 0bd8870da3
commit cee04048cb
7 changed files with 30 additions and 18 deletions

View file

@ -41,10 +41,11 @@ public class RTTIClassRecoverer extends RecoveredClassHelper {
RTTIClassRecoverer(Program program, ServiceProvider serviceProvider, FlatProgramAPI api,
boolean createBookmarks, boolean useShortTemplates, boolean nameVfunctions,
boolean hasDebugSymbols, TaskMonitor monitor) throws Exception {
boolean makeVfunctionsThisCalls,boolean hasDebugSymbols, TaskMonitor monitor)
throws Exception {
super(program, serviceProvider, api, createBookmarks, useShortTemplates, nameVfunctions,
monitor);
makeVfunctionsThisCalls,monitor);
this.hasDebugSymbols = hasDebugSymbols;