Package ghidra.app.util.bin.format.pdb
Class PdbParserConstants
java.lang.Object
ghidra.app.util.bin.format.pdb.PdbParserConstants
Program Information options related to PDB data. All option keys specified
by this constants file are children of the Program Information options. Example:
Options options = program.getOptions(Program.PROGRAM_INFO
); boolean isPdbLoaded = options.getBoolean(PDB_LOADED
, false);
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Option key which indicates PDB Age as specified by loaded program (String, hex value without 0x prefix).static final String
Option key which indicates PDB filename or path as specified by loaded program (String).static final String
Option key which indicates PDB GUID as specified by loaded program (String).static final String
Option key which indicates if PDB has been loaded/applied to program (Boolean).static final String
Option key which indicates PDB Signature as specified by loaded program (String).static final String
Option key which indicates PDB Version as specified by loaded program (String). -
Constructor Summary
-
Method Summary
-
Field Details
-
PDB_LOADED
Option key which indicates if PDB has been loaded/applied to program (Boolean).- See Also:
-
PDB_FILE
Option key which indicates PDB filename or path as specified by loaded program (String).- See Also:
-
PDB_AGE
Option key which indicates PDB Age as specified by loaded program (String, hex value without 0x prefix).- See Also:
-
PDB_SIGNATURE
Option key which indicates PDB Signature as specified by loaded program (String).- See Also:
-
PDB_VERSION
Option key which indicates PDB Version as specified by loaded program (String).- See Also:
-
PDB_GUID
Option key which indicates PDB GUID as specified by loaded program (String).- See Also:
-
-
Constructor Details
-
PdbParserConstants
public PdbParserConstants()
-