mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
PDB - renamed parser class and improved handling of member names which
include classname.
This commit is contained in:
parent
d361b76b92
commit
b75a914b37
20 changed files with 131 additions and 133 deletions
|
@ -23,7 +23,7 @@ import docking.widgets.dialogs.MultiLineMessageDialog;
|
|||
import ghidra.app.plugin.core.analysis.*;
|
||||
import ghidra.app.services.DataTypeManagerService;
|
||||
import ghidra.app.util.bin.format.pdb.PdbException;
|
||||
import ghidra.app.util.bin.format.pdb.PdbParserNEW;
|
||||
import ghidra.app.util.bin.format.pdb.PdbParser;
|
||||
import ghidra.app.util.importer.MessageLog;
|
||||
import ghidra.framework.options.Options;
|
||||
import ghidra.program.model.address.AddressSetView;
|
||||
|
@ -60,8 +60,8 @@ class LoadPdbTask extends Task {
|
|||
public boolean analysisWorkerCallback(Program currentProgram, Object workerContext,
|
||||
TaskMonitor currentMonitor) throws Exception, CancelledException, PdbException {
|
||||
|
||||
PdbParserNEW parser =
|
||||
new PdbParserNEW(pdbFile, program, service, true, currentMonitor);
|
||||
PdbParser parser =
|
||||
new PdbParser(pdbFile, program, service, true, currentMonitor);
|
||||
|
||||
parser.parse();
|
||||
parser.openDataTypeArchives();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue