Class OMFModule
java.lang.Object
ghidra.app.util.bin.format.pe.debug.OMFModule
 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;
 - 
Method Details- 
getOvlNumberpublic short getOvlNumber()
- 
getILibpublic short getILib()
- 
getStylepublic short getStyle()
- 
getName
- 
getOMFSegDescsReturns the OMF segment descriptions in this OMF module.- Returns:
- the OMF segment descriptions in this OMF module
 
 
-