Package ghidra.app.util.bin.format.coff
Class AoutHeader
java.lang.Object
ghidra.app.util.bin.format.coff.AoutHeader
- All Implemented Interfaces:
- StructConverter
- Direct Known Subclasses:
- AoutHeaderMIPS
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected intprotected intprotected intprotected intprotected shortstatic final intprotected intprotected intprotected short
- 
Method Summary
- 
Field Details- 
SIZEOFpublic static final int SIZEOF- See Also:
 
- 
magicprotected short magic
- 
vstampprotected short vstamp
- 
tsizeprotected int tsize
- 
dsizeprotected int dsize
- 
bsizeprotected int bsize
- 
entryprotected int entry
- 
text_startprotected int text_start
- 
data_startprotected int data_start
 
- 
- 
Method Details- 
getMagicpublic short getMagic()
- 
getVersionStamppublic short getVersionStamp()
- 
getTextSizepublic int getTextSize()
- 
getInitializedDataSizepublic int getInitializedDataSize()
- 
getUninitializedDataSizepublic int getUninitializedDataSize()
- 
getEntrypublic int getEntry()
- 
getTextStartpublic int getTextStart()
- 
getInitializedDataStartpublic int getInitializedDataStart()
- 
toDataTypeDescription copied from interface:StructConverterReturns 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:
- toDataTypein interface- StructConverter
- Returns:
- returns a structure datatype representing the implementor of this interface
- Throws:
- DuplicateNameException- when a datatype of the same name already exists
- IOException- if an IO-related error occurs
- See Also:
 
 
-