Class DebugCodeView
java.lang.Object
ghidra.app.util.bin.format.pe.debug.DebugCodeView
- All Implemented Interfaces:
StructConverter
A class to represent the code view debug information.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the code view debug directory.Returns the code view .PDB info.Returns the code view symbol table.Returns a structure datatype representing the contents of the implementor of this interface.
-
Method Details
-
getDebugDirectory
Returns the code view debug directory.- Returns:
- the code view debug directory
-
getSymbolTable
Returns the code view symbol table.- Returns:
- the code view symbol table
-
getPdbInfo
Returns the code view .PDB info.- Returns:
- the code view .PDB info
-
getDotNetPdbInfo
-
toDataType
Description copied from interface:StructConverter
Returns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }
The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Specified by:
toDataType
in interfaceStructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
DuplicateNameException
- when a datatype of the same name already exists- See Also:
-