Class OMFModule
- java.lang.Object
-
- ghidra.app.util.bin.format.pe.debug.OMFModule
-
public class OMFModule extends java.lang.Object
typedef struct OMFModule { unsigned short ovlNumber; // overlay number unsigned short iLib; // library that the module was linked from unsigned short cSeg; // count of number of segments in module char Style[2]; // debugging style "CV" OMFSegDesc SegInfo[1]; // describes segments in module char Name[]; // length prefixed module name padded to long word boundary } OMFModule;
-
-
Constructor Summary
Constructors Constructor Description OMFModule()
DO NOT USE THIS CONSTRUCTOR, USE create*(GenericFactory ...) FACTORY METHODS INSTEAD.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getILib()
java.lang.String
getName()
OMFSegDesc[]
getOMFSegDescs()
Returns the OMF segment descriptions in this OMF module.short
getOvlNumber()
short
getStyle()
-
-
-
Method Detail
-
getOvlNumber
public short getOvlNumber()
-
getILib
public short getILib()
-
getStyle
public short getStyle()
-
getName
public java.lang.String getName()
-
getOMFSegDescs
public OMFSegDesc[] getOMFSegDescs()
Returns the OMF segment descriptions in this OMF module.- Returns:
- the OMF segment descriptions in this OMF module
-
-