Interface ICOFFSectionHeader
public interface ICOFFSectionHeader
This interface describes the section header of a PE/COFF executable file.
Reference: https://msdn.microsoft.com/en-us/library/windows/desktop/ms680547(v=vs.85).aspx
-
Method Summary
-
Method Details
-
getName
byte[] getName() -
getVirtualSize
long getVirtualSize() -
getVirtualAddress
long getVirtualAddress() -
getSizeOfRawData
long getSizeOfRawData() -
getPointerToRawData
long getPointerToRawData() -
getPointerToRelocations
long getPointerToRelocations() -
getPointerToLinenumbers
long getPointerToLinenumbers() -
getNumberOfRelocations
int getNumberOfRelocations() -
getNumberOfLinenumbers
int getNumberOfLinenumbers() -
getCharacteristics
int getCharacteristics()
-