Class OMFSegMap
java.lang.Object
ghidra.app.util.bin.format.pe.debug.OMFSegMap
 typedef struct OMFSegMap {
     unsigned short  cSeg;        // total number of segment descriptors
     unsigned short  cSegLog;     // number of logical segment descriptors
     OMFSegMapDesc   rgDesc[0];   // array of segment descriptors
 };
 - 
Method SummaryModifier and TypeMethodDescriptionshortReturns the number of logical segment descriptors.Returns the array of segment descriptors.shortReturns the total number of segment descriptors.
- 
Method Details- 
getSegmentDescriptorCountpublic short getSegmentDescriptorCount()Returns the total number of segment descriptors.- Returns:
- the total number of segment descriptors
 
- 
getLogicalSegmentDescriptorCountpublic short getLogicalSegmentDescriptorCount()Returns the number of logical segment descriptors.- Returns:
- the number of logical segment descriptors
 
- 
getSegmentDescriptorReturns the array of segment descriptors.- Returns:
- the array of segment descriptors
 
 
-